0

Ajax とメソッド GET を使用して、角括弧付きの URL を送信しようとしていますが、それらの正しいエンコーディングを取得していません。

Request URL:http://myurl/search.html?_dc=1382510050331&search%5Bpostcode%5D=96231

それ以外の:

Request URL:http://myurl/search.html?_dc=1382510050331&search[postcode]=96231

エラー:

Status Code:502 Host not found

ここに私のコードのスニペットがあります:

Ext.Ajax.request({
    url: 'http://myulr.lan/fpsearchjson.html',
    method: 'GET',
    params: {
        "geosearch[postcode]":91111
    },
    success: function(response){
        console.log("success");
    },
    failure: function(response){
        console.log("failure");
    }
});

どんな助けでも大歓迎です!

4

3 に答える 3