web-dev-qa-db-ja.com

JSON POSTリクエストを使用

JSONを使用して、APIへのPOSTリクエストを開始しようとしています。

私はいくつかのサンプルコードを見つけました、そして、私が行き過ぎる前に、私はそれを働かせたいと思いました、しかし、私は立ち往生しています...

<html>
<head>
<script type="text/javascript">
function JSONTest()
{
requestNumber = JSONRequest.post(
    "https://example.com/api/",
    {
        apikey: "23462",
        method: "example",
        ip: "208.74.35.5"
    },
    function (requestNumber, value, exception) {
        if (value) {
            processResponse(value);
        } else {
            processError(exception);
        }
    }
); 
}
</script>
</head>
<body>

<h1>My JSON Web Page</h1>


<button type="button" onclick="JSONTest()">JSON</button>

</body>
</html> 

これは.htmlファイルで、Chromeで実行しています。ボタンをクリックしても何も起こりません...

JSONレスポンスを解釈して表示できるjavascriptが欠けていると思いますか?それ以外のアドバイスはありますか?

13
GK1667

JQueryを使用した例を以下に示します。お役に立てれば

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<title>My jQuery JSON Web Page</title>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">

JSONTest = function() {

    var resultDiv = $("#resultDivContainer");

    $.ajax({
        url: "https://example.com/api/",
        type: "POST",
        data: { apiKey: "23462", method: "example", ip: "208.74.35.5" },
        dataType: "json",
        success: function (result) {
            switch (result) {
                case true:
                    processResponse(result);
                    break;
                default:
                    resultDiv.html(result);
            }
        },
        error: function (xhr, ajaxOptions, thrownError) {
        alert(xhr.status);
        alert(thrownError);
        }
    });
};

</script>
</head>
<body>

<h1>My jQuery JSON Web Page</h1>

<div id="resultDivContainer"></div>

<button type="button" onclick="JSONTest()">JSON</button>

</body>
</html> 

Firebugデバッグプロセス

Firebug XHR debug process

27
Phil

現在のブラウザは、現時点ではドラフトにすぎないため、JSONRequestを実装していません(私の知る限り)。私はあなたのページに含めることができるライブラリとしてそれを実装している誰かを見つけました: http://devpro.it/JSON/files/JSONRequest-js.html (それが持っていることに注意してくださいいくつかの依存関係)。

それ以外の場合は、jQueryやMootoolsなどの別のJSライブラリを使用できます。

0
Ivan