1
爲什麼我不能從ng-include中的html中設置控制器ExampleCtrl的$ scope.myProperty的值。但是,如果我定義$ scope.myObj.myProperty和在HTML我推薦像ng-model="myObj.myProp"
工作正常?AngularJS:ng-include和示波器
例子:
<div ng-app="MyApp">
<div ng-controller='ExampleCtrl'>
<div ng-include="'#inlcude'"></div>
<!-- THIS DON'T WORK -->
<p><b>myProperty:</b>{{myProperty}}</p>
<!-- THIS WORK -->
<p><b>myObj.myProperty:</b>{{myObj.myProperty}}</p>
</div>
</div>
<!-- INCLUDE HTML -->
<div id='include'>
<input ng-model='myProperty' type='text' />
<input ng-model='myObj.myProperty' type='text' />
</div>
我明白泰德NG-包括創建一個新的範圍,但爲什麼從的HTML包括我沒有看到你的父母範圍的簡單歡迎使用屬性?
感謝
謝謝!我發現你的[post](http://stackoverflow.com/questions/14049480/what-are-the-nuances-of-scope-prototypal-prototypical-inheritance-in-angularjs) – jlarghi 2013-03-06 20:22:59