第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

angularjs中嵌套的directive之間如何進(jìn)行scope通訊?

angularjs中嵌套的directive之間如何進(jìn)行scope通訊?

猛跑小豬 2018-08-10 06:05:10
html代碼<div ng-controller="parentController">         <button-bar>         <button class="primary" ng-click="onPrimary1Click()">{{primary1Label}}</button>         <button class="primary">Primary2</button>     </button-bar></div>js代碼scope: false下buttonBar和primary都能得到controller中的test=222,但是如何能在buttonBar中修改test,并使primary獲取到修改后的值呢?
查看完整描述

1 回答

?
青春有我

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超8個(gè)贊

如果你非要這么做的話,應(yīng)該用引用類型:

var testapp = angular.module('testapp', []);

testapp.controller('parentController', ['$scope', '$window', function($scope, $window) {    console.log('parentController scope id = ', $scope.$id);
    $scope.primary1Label = 'Prime1';
    $scope.test= { test2: 222 };
    $scope.onPrimary1Click = function() {
        $window.alert('Primary1 clicked');    
    };
}]);

testapp.directive('primary', function() {    return {        restrict: 'C',        scope: false,  
        link: function(scope, element, attrs) {
            alert(scope.test.test2);
            element.addClass('btn btn-primary');
        }
    }
});

testapp.directive('buttonBar', function() {    return {        restrict: 'EA',        template: '<div class="span4 well clearfix"><div class="pull-right" ng-transclude></div></div>',        replace: true,        transclude: true,        scope: false,       
        link: function(scope, element, attrs) {
                scope.test.test2 = 111;                //alert(scope.primary1Label);
        }        
    };
});


查看完整回答
反對(duì) 回復(fù) 2018-09-14
  • 1 回答
  • 0 關(guān)注
  • 809 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)