您好,我在上传图片时遇到问题。我使用打字稿,所以我尝试调整fiddle
. 我在互联网上找到了,但问题是我没有使用范围,因此没有从指令中修改字段“myFile”。我使用了bindToController
andscope:{myFile'='}
但它不起作用。
谢谢你的帮助
您好,我在上传图片时遇到问题。我使用打字稿,所以我尝试调整fiddle
. 我在互联网上找到了,但问题是我没有使用范围,因此没有从指令中修改字段“myFile”。我使用了bindToController
andscope:{myFile'='}
但它不起作用。
谢谢你的帮助
如果您想对指令使用控制器语法,请像这样使用
function myExample() {
var directive = {
restrict: 'EA',
templateUrl: '...',
scope: {
myFile: '='
},
link: linkFunc,
controller: ExampleController,
controllerAs: 'vm',
bindToController: true
};
return directive
function linkFunc(scope, el, attr, ctrl) {
scope.vm.myFile = ...
}
}
function ExampleController(){
var vm = this
}