使用getJson方法检查null响应

时间:2013-01-28 14:30:50

标签: jquery json jquery-ui autocomplete

刚刚完成一个应用程序,我需要在json方面再实现一件事。

我有一个jquery auto complete,它使用我写的一个返回json的Web服务。

我需要稍微改变这一点,以便如果带有参数的第一个请求返回null,那么它将再次尝试使用没有参数进行主搜索的默认网址。

为了确保我没有错过任何技巧,我说我会问,看看是否有任何jquery大师有一种优雅的方式来实现这一目标。

var cache = {},lastXhr;
var web_service_url_default = "http://json_sample.php";
var web_service_url_specific = "http://json_sample.php/?param1=hello&param2=world";

var autocomp_opt = {
        minLength: 1,
        source: function( request, response ) {
            var term = request.term;
            if ( term in cache ) {
                response( cache[ term ] );
                return;
            }

            lastXhr = $.getJSON( web_service_url_specific, request, function( data, status, xhr ) {
                cache[ term ] = data;
                if ( xhr === lastXhr ) {
                    response( data );
                }
            });
        }
};

这是我自动完成的选项变量,它输入到自动完成调用,如下所示,并且工作正常。

$('.some_class').autocomplete(autocomp_opt);

我需要改变它,这样如果第一个请求返回为空,那么它会触发没有参数的默认请求。

随时欢呼帮助。


更新了工作示例

完成此操作后,请参阅以下代码,以防它对任何人有所帮助。它可能不是最优雅但它无论如何都有效。

请注意,在此示例中并且在测试中,缓存似乎不太好并导致请求不会被反复触发,因此我将其删除。现在它100%工作。

var autocomp_opt = {
            minLength: 1,
            source: function( request, response ) {
                var term = request.term;

                lastXhr = $.getJSON( web_service_url_specific, request, function( data, status, xhr ) {
// check if there is only one entry in the json response and if the value is null, my json script returns empty like this
                        if(data.length == 1 && data[0].value == null){
                            $.getJSON( $web_service_url_default, request, function( data, status, xhr ) {
                                response( data );
                            });
                        }else{
                            response( data );
                        }
                });
            }
        };

$('.some_class').autocomplete(autocomp_opt);

2 个答案:

答案 0 :(得分:2)

if(data.length == 1 && data[0].value == null) 
{
    ...
}

我设法让这个人自己工作。如果有帮助,请参阅上面的示例。它可能不是最优雅的方式,但它仍然有效。 欢呼声。

答案 1 :(得分:0)

我假设“空请求返回”表示请求失败(例如错误,不是空字符串等)。您可以使用$ .ajax构建ajax调用并挂钩到错误函数:

$.ajax({
  url: web_service_url_specific,
  data: request,
  dataType, 'json',
  success: function( data, status, xhr ) {
    // not going to question this part
    cache[ term ] = data;
    if ( xhr === lastXhr ) { response( data ); }
  },
  error: function() {
    // fallback ajax call
    $.ajax({});
  }
});