发表于: 2016-12-23 23:31:07
2 1556
今日完成:
今天上午把angular刷完了,下午写页面。把四个页面跳转给完成了。主要是配置路由花了点时间,路由配置如下:
var bookStore = angular.module('bookStore',['ngRoute']);
bookStore.config(function ($routeProvider) {
$routeProvider.when('/index',{
templateUrl:'index.html',
}).when('/list1',{
templateUrl:'angular1.html',
}).when('/list2',{
templateUrl:'angular2.html',
}).when('/list3',{
templateUrl:'angular3.html',
})
});
明日计划:
为任务7用到的知识做储备,继续看angular
遇到的问题:
暂没
今日收获:
更加熟悉angular了
评论