码迷,mamicode.com
首页 > 其他好文 > 详细

angular note2

时间:2015-03-17 21:41:48      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

regarding of most applications, you need to create model object to contain you data.

 

var messages = {};

messages.someText = ‘You have started your journey.‘

 

xxModule.controller(‘XXController‘,function($scope){

  $scope.messages = messages;

});

 

<p>{{messages.someText}}</p>

 

在稍后讨论$scope对象的时候我们将会看到,像这样创建模型对象的方式可以避免一些非预期的行为,这些行为可能是由$scope对象中的原型继承机制所导致的。

 

angular note2

标签:

原文地址:http://www.cnblogs.com/specification/p/4345372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!