13

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 が欠けていると思いますか? そうでなければ、他のアドバイスはありますか?

4

2 に答える 2

27

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 デバッグ プロセス

于 2012-07-12T17:11:51.997 に答える
0

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

それ以外の場合は、jQuery や Mootools などの別の JS ライブラリを使用することをお勧めします。

于 2012-07-12T17:07:57.267 に答える