Angular路由

作者: 2e9a10d418ab | 来源:发表于2017-05-18 00:31 被阅读0次

    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:

    相关文章

      网友评论

        本文标题:Angular路由

        本文链接:https://www.haomeiwen.com/subject/ijbjxxtx.html