我有以下javascript代码:
function delete_draft(id, name) {
var text = 'Are you sure you want to delete "' + name + '"?';
alert(id + name)
var noty = noty({
text: text,
buttons: [
{addClass: 'btn btn-primary', text: 'Yes', onClick: function($noty) {
// this = button element
// $noty = $noty element
$noty.close();
$.post('/ajax/drafts/delete', {id:id}, function(data) {
document.location.reload(true);
});
}
},
{addClass: 'btn btn-danger', text: 'Cancel', onClick: function($noty) {
$noty.close();
}
}
]});
}
当我从领事delete_draft(6, "this is it")
跑出来时,我收到此错误
TypeError: undefined is not a function
arguments: Array[1]
get message: function () { [native code] }
get stack: function () { [native code] }
set message: function () { [native code] }
set stack: function () { [native code] }
type: "called_non_callable"
__proto__: Error
我该如何解决这个问题? Noty的网站是http://needim.github.com/noty/ 如果您认为它应该有效,请发表评论。
答案 0 :(得分:25)
我刚刚遇到过这个问题。结果是因为变量名noty
与导出的函数名noty
相同。
var n = noty({text: 'testing 123'});
只需更改变量名即可为我修复。
答案 1 :(得分:4)
除了重命名变量,请确保包含布局js文件。默认值为top,因此如果未在选项中指定,则需要包含noty/layouts/top.js
。如果指定任何其他布局,则包括相应的布局js文件。