14

私は次の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のWebサイトはhttp://needim.github.com/noty/ です。機能するはずだと思われる場合は、コメントしてください。

4

2 に答える 2

25

私はちょうどこの問題に遭遇しました。noty変数名がエクスポートされた関数名と同じであることが判明しましたnoty

var n = noty({text: 'testing 123'});

変数名を変更するだけで修正されます。

于 2012-09-18T10:53:31.603 に答える
4

変数の名前を変更することに加えて、レイアウトjsファイルが含まれていることを確認してください。デフォルトはtopであるため、オプションで指定されていない場合は、を含める必要がありますnoty/layouts/top.js。他のレイアウトを指定する場合は、適切なレイアウトjsファイルを含めます。

于 2012-09-20T22:27:43.717 に答える