AngularJS1.5+组件不支持Watcher,其工作是什么?我一直在将我的自定义指令升级到新的组件体系结构..我读过组件不支持观察者。这是对的吗?如果是,如何检测对象上的更改?对于一个基本示例,我有自定义组件。myBox它有一个在游戏上绑定的子组件游戏。如果游戏组件中存在更改游戏,如何在myBox中显示警告消息?据我所知,有rxJS方法,可以纯粹在角度上这样做吗?我的JSFiddleJavaScriptvar app = angular.module('myApp', []);app.controller('mainCtrl', function($scope) {
$scope.name = "Tony Danza";});app.component("myBox", {
bindings: {},
controller: function($element) {
var myBox = this;
myBox.game = 'World Of warcraft';
//IF myBox.game changes, show alert message 'NAME CHANGE'
},
controllerAs: 'myBox',
templateUrl: "/template",
transclude: true})app.component("game", {
bindings: {game:'='},
controller: function($element) {
var game = this;
},
controllerAs: 'game',
templateUrl: "/template2"})HTML<div ng-app="myApp" ng-controller="mainCtrl">
<script type="text/ng-template" id="/template">
<div style='width:40%;border:2px solid black;background-color:yellow'>
Your Favourite game is: {{myBox.game}}
<game game='myBox.game'></game>
</div>
</script>
<script type="text/ng-template" id="/template2">
<div>
</br>
Change Game
<textarea ng-model='game.game'></textarea>
</div>
</script>
Hi {{name}} <my-box>
</my-box></div><!--end app-->
3 回答
米琪卡哇伊
TA贡献1998条经验 获得超6个赞
.component
component
selector
directive
.directive
link/compile
.component
$onChanges
/$doCheck
$ONChanges(ChangesObj)
-每当更新绑定时调用。ChangesObj是一个哈希,其键是绑定属性的名称。 $doCheck()
-在绑定更改时调用摘要周期的每一个回合。提供一个检测更改并对其采取行动的机会。
- 3 回答
- 0 关注
- 527 浏览
添加回答
举报
0/150
提交
取消