1、我使用requirejs方式编写directive,两个组件在同一页面使用的,但组件1使用require属性获取不到组件2的controller到link里面呢?
2、
组件1:
define(['app','ModuleService','ParamFactory','ProductListsFactory'],function (app) {
app.directive('headerSearch',['ModuleService','$rootScope','ParamFactory','$ionicLoading','ProductListsFactory',
function (module,$rootScope,ParamFactory,$ionicLoading,ProductListsFactory) {
return {
restrict:'AE',
scope:{tdSearch:'&',keywords:'@'},
templateUrl:'module/headerSearch/headerSearch.html',
require:'?^productItem',
link:function (scope, element, attrs,ctrl) {
console.log('---------------------------');
console.log(ctrl);
console.log('===========================');
},
controllerAs:'headerSearchCtrl'
}
}]);
});
组件2:
define(['app','ModuleService'],function (app) {
app.directive('productItem',['ModuleService',function (module) {
return {
restrict:'E',
scope:{lists:'@',module:'@'},
link:function (scope, element, attrs) {
},
templateUrl:'module/productItem/productItem.html',
controller:function ($scope) {
}
}
}]);
})
页面:
<ion-view>
<header-search keywords="{{keywords}}"></header-search>
<product-item module="{{mymodule}}"></product-item>
</ion-view>
错误:
其实应该是理解的问题
中 ^表示的的是
也就是说,这个符号表示搜索父级元素,而在你的应用中,两个指令元素是兄弟关系。