我想我在这里缺少一些简单(重要)的东西。我使用包含的模板,其中包含映射到某个值的输入:
<div ng-controller="Ctrl"> <div ng-include src="'template.html'"></div> </div> <!-- template --> <script type="text/ng-template" id="template.html"> <input ng-model="testvalue" /> </script>
控制器:
function Ctrl($scope) { $scope.testvalue= "initial value"; }
警告$ scope.testvalue的值始终显示初始值,而不是更新的值(在输入时键入)。帮助我欧比湾你是我们唯一的希望。
这是绑定到原始而不是对象的常见的。字符串的值被传递,而不是对对象的引用。如果您使用对象而不是基元,则可以正常工作。在你的范围内这样的东西。
原文链接:https://www.f2er.com/angularjs/144089.html$scope.foo = {testvalue: "initial value"};
也:
Using `ng-model` within a transcluded directive in AngularJS
binding issue when a directive in a ngRepeat
AngularJS – updating scope value with asynchronous response
我确定有更多…