Heim > Fragen und Antworten > Hauptteil
例如,我在jsp或者html文件中如此写一个作用域:<input type="text" ng-model="bb.hello"/>
然后在js中,我如果想给bb添加一个属性该如何写呢?
在js中,如果直接写
bb.a="sdfd";就回报错的。那么该如何写符合这种东西呢?
大家讲道理2017-05-15 17:04:12
$scope.bb.a = "sdfd";
PHP中文网2017-05-15 17:04:12
就一班写法来说,在html中的变量,比如bb,到了controller中,则需要在前边加上$scope.,也就是$scope.bb。