<form class="ui form" id="indexForm" name="indexForm" onsubmit="return false;">
<span id="QuacorGradingValue" ng-model="fen" name="fen">6</span>
</form>
在controller里面为啥获取不到
var updateData = {};
alert("$scope.rates==="+$scope.fen);//undefined
//$scope是有值的
大家讲道理2017-05-15 16:52:18
雷雷
控制器:
雷雷http://stackoverflow.com/questions/19981627/setting-scope-property-with-ng-init-doesnt-work
天蓬老师2017-05-15 16:52:18
假设你的controller
是这样的:
module.controller('DemoController', ['$scope', function($scope) {
$scope.fen = ''; //为其指定一个初始值,这样在html里引用时才不会因为parent scope里没有找到`fen`变量而重新创建一个
}]);