这是我的问题:当我在修改模型“ urlservicerest
”
后单击按钮时,我的属性“ $scope.urlservicerest ”保持初始化为“hello”。
我尝试使用 $scope.$apply 更新数据,但没有成功。我不明白为什么“ $scope.urlservicerest ”没有更新,而数据绑定已经创建。
//file.html
<input type="input" ng-model="urlservicerest"></
<button type="button" ng-click="refresh()"> Rafraichir </button>
//script.js:
var field = $scope.urlservicerest = "hello";
$scope.refresh = function () {
alert(field);
}