Firefox では、これはうまく機能します。toastr ( https://github.com/CodeSeven/toastr ) は、成功メッセージとエラー メッセージの両方を表示します。IE では、エラーは発生せず、メッセージは表示されません。toastr メソッドの呼び出し方法に問題はありますか?
$.ajax({
url: '/api/emailtemplate/',
type: 'POST',
data: ko.toJSON(self),
contentType: 'application/json',
//dataType: 'json',
success: function (result) {
toastr.success('Template was saved successfully!');
},
error: function () { toastr.error('Template was not saved.', 'Template error!'); }
});