|
版本: |
BeX5V3.5 |
小版本号: |
|
|
|
数据库: |
Oracle |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
Windows 8 |
浏览器: |
Chrome |
|
|
本帖最后由 追梦! 于 2020-11-3 10:30 编辑
在使用require方式引用第三方JS文件,调用方法时报GrowlNotification is not defined错误,但是我自己做了一个html,引用第三方js却能正常使用。
BeX5引用方式:
调用方法:
var options = this.getOptions();
options.title = 'Reminder!';
options.description = 'You have a meeting at 10:30 АМ';
options.type = 'warning';
GrowlNotification.notify(options);
Model.prototype.getOptions= function(event){
var animationOptions = {
open: false,
close: false
};
return options = {
description: 'I am a default notification',
position: 'top-center',
closeTimeout: 0,
closeWith: ['click'],
animation: animationOptions,
showButtons: true,
buttons: {
action: {
callback: function (notification) {
alert("测试!!!");
}
}
},
showProgress: true
};
}
以上方法调用报错,找不到growl-notification.min.js文件中的对应方法。
以下是我做的html网页方式的demo,这个没有问题。
demo.zip
(51.75 KB, 下载次数: 407)
|
|