ng-class="{className:true,className1:false}"
$scope.$watch(要检测的数据的名字,function(){
//code
}.true);- - > 是否深度监视;监视对象的时候需要使用深度监视;
angular中的跨域:
回调函数的名字是:JSON_CALLBACK
$http.jsonp(url).success(function(data){ });
SPA:
single pade application 单页面应用;
路由:
告诉你该往哪儿去;
需要配合route.js使用;
路由需要配置才能运行;
app.config();
配置路由的步骤:
1.引入angular-route.js
2.app.config(function($routeProvider){
$routeProvider.when('/index',{
templateUrl:url,
controller:ctrl
}).otherwise({
redirectTo:'默认显示页面';
})
});
angular-form:
网友评论