AJAX を使用できます 役職。例:
$.ajax({
url: someURL,
type: 'post',
data: JSON.stringify(myObj),
contentType: 'application/json',
dataType: 'json',
success: function(data, status, xhr)
{
// ...
}
});
JSON.stringifyがあることを確認するには、json2
を使用します。 。 contentType
JSONドキュメントdataType
を投稿していることを意味します サーバーから受信することを期待していることを意味します。
サーバーでは、 json_decode
を使用します
デコードするには、 json_encode
応答をエンコードします。