angular.js - angular自定義指令中如何監視屬性值的變化
問題描述
html
<p on-test data={{userinfo}}></p>//自定義指令on-test,contorller中通過ajax的方式從后臺拿到userinfo,userinfo是一段很長的json字符串,會隨著用戶的操作而變化
directive
app.directive(’onTest’, function () { return {restrict: ’A’,scope:{ test:’@data’},link: function(scope , element, attr) { console.log(scope) /** *我想在這里拿到后臺傳過來的userinfo字符串,通過userinfo操作我的dom界面 **/} };});
我的疑惑:
我在link中打印scope,可以看到傳遞過來的數據,但是通過scope.test的方式無法獲取我的數據
問題解答
回答1:<p ng-app='app' ng-init='userinfo=’123’'> <input type='text' ng-model='userinfo' />{{userinfo}} <p on-test data='{{userinfo}}'></p></p><script src='http://cdn.bootcss.com/angular.js/1.5.6/angular.js'></script><script> var app = angular.module(’app’, []) app.directive(’onTest’, function () {return { restrict: ’A’, scope: {test: ’@data’ }, link: function (scope, element, attr) {console.log(’init’, scope.test)attr.$observe(’data’, function (val) { console.log(val)}) }} })</script>回答2:
同志,你的玩法不對哦:
首先是模板部分,既然你想監視userInfo的變化,那用雙向綁定的方式最合適不過了,但你寫的是綁定屬性(這個不夠帥):
<p on-test data='userinfo'></p><!--這樣就可以了-->
下面是指令注冊的部分:
app.directive(’onTest’, function () { return {restrict: ’A’,scope:{ test:’=data’//雙向綁定用=},link: function(scope , element, attr) { console.log(scope.test);//high不high?拿到了哦 scope.$watch(’test’, function(newVal){console.log(newVal);//每次你在controller里修改了userInfo,這里都會打印 }, true);} };});
相關文章:
1. javascript - 如何用最快的速度C#或Python開發一個桌面應用程序來訪問我的網站?2. python - 請問這兩個地方是為什么呢?3. python - 如何把152753這個字符串轉變成時間格式15:27:534. html - 請教一個前端css問題。5. objective-c - 從朋友圈跳到我的APP 如何實現?6. python - 關于beautifulsoup獲取文檔內容7. javascript - 有沒有類似高鐵管家的時間選擇插件8. mysql - jdbc的問題9. mysql 存儲過程 和 函數有什么用??10. mysql - 類似于之類的通知系統如何設計數據庫
