我正在尝试使用 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?否则还有其他建议吗?