0

我的 javascript 中有一个将数据发送到 Rails 控制器的 ajax 请求。如果控制器发现数据与数据库中已有的信息重复,则返回“无法处理的实体”错误。

我想打开一个对话框并询问用户是否确定要插入重复信息。如果用户说是,我想向数据对象添加另一个键并重试请求。添加的键将是一个忽略重复检查并插入数据的标志。

$.ajax({
      url: '/url',
      type: 'post',
      data: this.buildData(),
      success: function() {
        bootbox.alert('Information added', function() {
            Backbone.history.loadUrl();
          }.bind(this)
        );
      }.bind(this),
      error: function(jqXHR, textStatus, errorThrown) {
        if(errorThrown === 'Unprocessable Entity') {
          bootbox.confirm('Do it anyway?', function(confirm) {
              if(confirm) {
                /*Here I want to add another key to the data object and resend the request*/ 
              }
             }.bind(this)
           );
         }  
       }.bind(this)
    });

我将如何去做,或者更好的是,有没有更好的方法来做我想要完成的事情?

4

1 回答 1

0

首先,我确信有一些插件。

但是如果没有合适的插件,你总是可以做这样的事情

function dispatchAjax( options ){

     options = $.extend({},options);
     var data = $.extend({}, this.buildData(), options.data );
     $.ajax({ ... , 
                  error : function( ) { .... 
                             if ( typeof(options.retry) == "function" ){
                                   var retryFunc = options.retry;
                                   options.retry = null;
                                   options.data = { "extraKey":"extraValue"};
                                   dispatchAjax( options );
                             }
             });

}

给我一些时间来确保它正常运行并给出完整的代码

您可能感兴趣的另一种方法是使用同步调用。{"async":false}在 JQuery 的 ajax 请求中。

我知道这似乎违背了目的,但是我发现它对于服务器端验证非常有用 - 所以它可能适合您的需求,并且您不必像上面显示的那样处理复杂的处理程序,它只是这样的:

  var result = dipatchRequest( options, /*async*/  false, /*ignore-duplicates*/ false );
  if ( result.error && confirm(..) ){ 
       dispatchRequest(options, true, true);
  } 
于 2012-08-27T20:36:33.110 回答