14
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jQuery:post処理の戻り値について

Posted at

jQueryのプログラミングにおいてデータをPOSTする処理を作成した

post.js
$.post('test.php', params,'json').done(
	function(data, textStatus){
		$('.result').text(data.text);
	}
)
test.php
<?php
data = $_POST();

$res[] = array('type' =>'status', 'text' => $sw);
$result = json_encode($res);

echo $result;
?>

コールバック関数において、dataに結果は入ったが、期待したオブジェクトではなく、単なるテキストになっていた
このため、data.textがundifinedになってしまっていた。

dataの中身を確認してみると、テキストとして以下の内容が入っていた
data = [{type => status}, {text => success}]

どうやら、これをオブジェクトに変換する必要があるみたいだ。

そこで、コールバック関数の先頭に変換処理を追加修正した。

post.js
res = JSON.parse(data);
$('.result').text(res.text);
14
17
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?