0

var result = $.getJSON を使用してデータを取得しています。

console.log(result); の場合 私はこのオブジェクトを取得します:

Object
    abort: function (a){a=a||"abort",p&&p.abort(a),w(0,a);return this}
    always: function (){i.done.apply(i,arguments).fail.apply(i,arguments);return this}
    complete: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    done: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    error: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    fail: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    getAllResponseHeaders: function (){return s===2?n:null}
    getResponseHeader: function (a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c}
    isRejected: function (){return!!e}
    isResolved: function (){return!!e}
    overrideMimeType: function (a){s||(d.mimeType=a);return this}
    pipe: function (a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()}
    progress: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    promise: function (a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}
    readyState: 4
    responseText: "{'result':'success'}"
    setRequestHeader: function (a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this}
    state: function (){return e}
    status: 200
    statusCode: function (a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this}
    statusText: "OK"
    success: function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
    then: function (a,b,c){i.done(a).fail(b).progress(c);return this}
__proto__: Object

statusText キーの値を取得するにはどうすればよいですか? (この場合は「OK」);

console.log(result.statusText) と console.log(result['statusText'] を試しましたが、どちらも未定義として返されます。

編集:これが私が使用している実際のコードです。

 $j(".buyNowButton").click(function(){
      var qty = $j(this).attr('qty');
      var product_id = $j(this).attr("product_id");

      var params = "product_id=" + product_id + "&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;qty=" + qty;        

      var result = $j.getJSON("/acumen/scripts/addToCart.php", params, function(data, textStatus){
            console.log(textStatus);
           if (textStatus == "error"){
                alert("There was an error adding this item to your cart.  Please call customer service for assistance.", "Error");
                return;
           };
           if (data.result == "error"){
                alert("Sorry, an error occurred while adding the item to your cart.  The error was: '" + data.message + "'");
                return;
           };
      }); 
      console.log(result);
 });
4

3 に答える 3

1

オブジェクトを正しく使用していないようです。を使用するconsole.log(result)と、結果テキストが表示される唯一の理由は、Firebug コンソールが参照値を更新するためです。同じ行のコードでアクセスしようとするとresult.statusText、リクエストがまだ実際に終了していない可能性が高いため、結果が得られません。

この行:

var result = $.getJSON

リクエストオブジェクト自体を提供しています。応答を処理する場合は、コールバック関数で行います。

$.getJSON('request/url/goes/here', request_data, function(result) {
    // this is where you do something with your json data
});

getJson...これを行うための「クイックエイリアス」であることを理解する:

$.ajax({
  url:'request/url/goes/here',
  dataType: 'json',
  data: request_data,
  success: function (result) {
      // this is where you do something with your json data
  }
});

応答はテキスト「ok」であるとあなたは言います。を使用しないことをお勧めしますgetJson。これは、応答が json データであることを期待するためです。その代わり:

$.ajax({
  url:'request/url/goes/here',
  data: request_data,
  success: function (result) {
      // this is where you do something with your response string "ok"
  }
});

.. コールバックのデータ型を json として指定していないことに注意してください。jQuery はそれを自動検出します。

ドキュメンテーション

于 2012-07-20T17:27:12.997 に答える
0

result変数は、JSONデータではなく、返されるpromiseです。$.getJSON()成功のコールバックを使用する必要があります。

getJSON の使用方法の簡単な例を次に示します。

http://www.jquery4u.com/json/ajaxjquery-getjson-simple/

于 2012-07-20T17:30:44.383 に答える
0

それは単純です:

result.statusText
于 2012-07-20T17:21:32.757 に答える