0

Noty ( http://needim.github.com/noty/ ) というダイアログ プラグインを使用しています。確認ダイアログボックスを作成するために使用しています。これは私のコードです:

function delete_draft(id, name) {
    var text = 'Are you sure you want to delete "' + name + '"?';
    var noty = noty({
        text: text,
        buttons: [
        {addClass: 'btn btn-primary', text: 'Yes', onClick: function($noty) {
            $.post('/ajax/drafts/delete', {id:id}, function(data) {
                document.location.reload(true);
            });
            document.location.reload(true);
        }
        },
        {addClass: 'btn btn-danger', text: 'Cancel', onClick: function($noty) {
            $noty.close();
        }
        }
    ]});
}

これを使用して呼び出すと、次のdelete_draft(10, "test")ようになります。

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
4

0 に答える 0