3

私のWebサービスは、発生したエラーに関する詳細をhttp本文に入れます。Dojo リクエストでこの詳細にアクセスするにはどうすればよいですか。

たとえば、http エラーは次のようになります。

HTTP/1.1 500 Internal Server Error
Transfer-encoding: chunked
Content-type: application/json
Date: Tue, 18 Sep 2012 18:47:31 GMT

15
This is my exception!
0

私の Dojo リクエストは次のようになります。

require(["dojo/dom", "dojo/on", "dojo/request",
        "dojo/json", "dojo/domReady!"],
    function(dom, on, request, JSON){
        // Results will be displayed in resultDiv
        var resultDiv = dom.byId("errorResult");

        // Attach the onclick event handler to the makeRequest button
        on(dom.byId('errorButton'),"click", function(evt){
            request.get("./rest/test/error", {
                // Parse data from JSON to a JavaScript object
                handleAs: "json"
            }).then(function(data){
                resultDiv.innerHTML = "Username: " + data.name + "</br>Role:" + data.role;
            },
            function(error){
                // Display the error returned
                resultDiv.innerHTML = error;
            });
        });
    }
);

に表示されるエラーは次のとおりです。

RequestError: Unable to load ./rest/test/error status: 500

そして、私がそこに持っていたいのは、本文のテキストです:

This is my exception!
4

2 に答える 2

3

AMD'ized Dojo の XHR 応答コード (+タイムスタンプ) を取得する方法に対する私の回答をご覧ください。

deferred.response.thenの代わりに使用deferred.then:

var deferred = request.get("./rest/test/error", { handleAs: "json" });

deferred.response.then(
    // success
    function(response) {
        console.log("data:", response.data);      // parsed json
        console.log("http body:", response.text); // raw text
    },
    // error
    function(error) {
        var response = error.response;
        console.log("http body:", response.text);
    }
);

jsFiddle で実際の動作を確認してください: http://jsfiddle.net/phusick/SGh5M/

于 2012-09-19T07:23:39.350 に答える
0

Ajax 要求に dojo を使用したとき、エラー メソッドには常に複数のパラメーターがありました。最初のパラメーターは送信されたリクエストで、2 番目のパラメーターは応答または例外だと思います。

メソッドに 2 番目のパラメーターを追加して、必要なものが含まれているかどうかを確認してください。

于 2012-09-18T20:31:02.133 に答える