angular.js - angularjs $scope value undefined
怪我咯
怪我咯 2017-05-15 16:50:18
0
3
577
  <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是有值的

怪我咯
怪我咯

走同样的路,发现不同的人生

répondre à tous(3)
伊谢尔伦
<body ng-controller="controller">
大家讲道理
data-ng-init='fen=6'

contrôleur :

$scope.$watch("fen", function(){
    console.log($scope.fen);
});

http://stackoverflow.com/questions/19981627/setting-scope-property-with-ng-init-doesnt-work

Peter_Zhu

Supposons que votre controller ressemble à ceci :

module.controller('DemoController', ['$scope', function($scope) {
    $scope.fen = '';   //为其指定一个初始值,这样在html里引用时才不会因为parent scope里没有找到`fen`变量而重新创建一个
}]);
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal