码迷,mamicode.com
首页 > Web开发 > 详细

angularJS $scope读不到值

时间:2014-11-03 16:18:52      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:ar   os   使用   sp   bs   html   htm   js   nbsp   

有时候使用$scope时无法从html中读取到值,也就是ng-model中绑定的值无法传给angular使用

原因:

在Js中你或许使用了这样的方法定义scope变量,$scope.show = ""

html:  .....................  <... ng-model = "show"....>

这样的话html中的hello值无法传送给js处理

解决办法

js: $scope.post = {  show : ‘‘  }

html :  .....................  <... ng-model = "post.show"....>

如此值的传递就解决了

angularJS $scope读不到值

标签:ar   os   使用   sp   bs   html   htm   js   nbsp   

原文地址:http://www.cnblogs.com/LH2014/p/4071357.html

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