我在将控制器中定义的函数与指令中的回调函数绑定时遇到了一些麻烦。我的代码如下所示:
在我的控制器中:
$scope.handleDrop = function ( elementId, file ) {
console.log( 'handleDrop called' );
}
然后我的指令:
.directive( 'myDirective', function () {
return {
scope: {
onDrop: '&'
},
link: function(scope, elem, attrs) {
var myFile, elemId = [...]
scope.onDrop(elemId, myFile);
}
} );
在我的 html 页面中:
<my-directive on-drop="handleDrop"></my-directive>
上面的代码没有运气。根据我在各种教程中阅读的内容,我知道我应该在 HTML 页面中指定参数?