亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

angularjs 中directive的scope問題?

angularjs 中directive的scope問題?

幕布斯6054654 2019-02-05 10:06:50
angularjs 中directive的scope問題
查看完整描述

2 回答

?
狐的傳說

TA貢獻1804條經驗 獲得超3個贊

templateURL function 只有2個參數 elem 和 attr哦。不能訪問scope,因為模版請求是在scope初始化之前。

可以通過屬性傳輸,然后獲取return 'customer-'+attr.type+'.html',或者

...
link: function(scope) {
  scope.customerUrl = 'customer-'+scope.type+'.html'},
template: '<div ng-include="customerUrl"></div>'...


查看完整回答
反對 回復 2019-03-17
?
開滿天機

TA貢獻1786條經驗 獲得超13個贊

templateUrl執行還在compile之前,從哪里去注入的scope?
templateUrl的參數只有element,attrs。

如果你的type是靜態的,可以這樣用

<my-dir type="template.html"></my-dir>

.directive('myDir', function () {    return {        scope: {            type: '@'
        },        templateUrl: function (element, attrs) {            return attrs.type;
        }
    }
});


查看完整回答
反對 回復 2019-03-17
  • 2 回答
  • 0 關注
  • 646 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號