htmljavascriptmodule.directive('myDatepicker',function(){return{link:function(scope,el){el.datepicker(function(){//这里需要执行在controller里定义的不同的回调函数});}}});module.controller('testCtrl',function(){vm.callbackA=function(){//回调函数A};vm.callbackB=function(){//回调函数B}});
添加回答
举报
0/150
提交
取消