当他们单击按钮时,我们正在尝试使用第三方 Jquery 插件打开客户端视图。我已经添加了
<script src="https://testserver.net/1/modules/cdn-latest.js"></script>
我有指令
angular.directive('fileSelector', function() {
return {
templateUrl: 'fileSelectorTemplate.html',
restrict: 'E',
scope: {},
controller: 'fileSelectorController',
controllerAs: 'ctrl',
bindToController: {
selectionMode: '<?',
labelI18nKey: '<',
acceptedFileTypes: '<',
customClass: '<?',
disabled: '<?',
onFileSelect: '&'
},
link: function(scope, element) {
element.click(function () {
CDNView.open({
language: "en_US",
theme: {
color: "#3380FF"
},
onSuccess: function (result) {
console.log(result);
}
});
});
}
};
});
CDNView 在 javascript 中,我们将其包含在 html 中。当我编译它说'CDNView'没有定义。
我怎样才能整合这个angular1.7?
问候,斯里