0

次のcurlリクエストを送信して、mongodbから結果を取得します。

curl --data 'cmd={"geoNear" : "items", "near":[6.8590845,79.9800719]}' 'http://82.196.xxx.xxx:27080/weather/_cmd'

それは働いています。上記のcurlリクエストを行うためにajaxリクエストを送信しようとしています。

         $.ajax({
            url: 'http://82.196.xxx.xxx:27080/weather/_cmd',
            type: 'POST',
            // dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
            data: {"geoNear" : "items", "near":[6.8590845,79.9800719]},
        })
        .done(function() {
            console.log("success");
        })
        .fail(function() {
            console.log("error");
        })
        .always(function() {
            console.log("complete");
        });

問題は私のデータオブジェクトだと思います。カール依頼あり'cmd={"geoNear" : "items", "near":[6.8590845,79.9800719]}。しかし、それがどのように ajax リクエストに変換されるのかわかりません。

しかし、それは機能していません。200 OKステータスを取得しました。私を助けてください。

4

1 に答える 1