0

javascriptからphpに配列の配列を渡したいです。それを行う最も簡単な方法は何ですか?

JavaScriptの配列が好き:

var resultArray = [ 
                    {"id":"1", "description":"aaa", "name":"zzz", "titel":"mmm"},
                    {"id":"2", "description":"bbb", "name":"yyy", "titel":"nnn"},
                    {"id":"3", "description":"ccc", "name":"xxx", "titel":"lll"},
                    {"id":"4", "description":"ddd", "name":"www", "titel":"qqq"},
                    {"id":"5", "description":"eee", "name":"vvv", "titel":"rrr"}
                  ] 

windows.location.href = "searchResults.php?resultArray=" + JSON.stringify(resultArray);

私が使用するphpで:

$resultArray = json_decode($_GET['resultArray']);

echo $resultArray[0]['id']; // should be "1", but show nothing

返信ありがとうございます。

4

3 に答える 3

0
Its json_decode() not json.decode()

$resultArray = json_decode($_GET['resultArray']);

もしあなたがprint_r($resultArray)あなたは標準クラス配列を取得し、あなたはそれにアクセスすることができ echo $resultArray[0]->id、あなたに1を与えるでしょう;

于 2013-05-03T12:47:12.673 に答える
0

json_decodeはありませんjson.decode

于 2013-05-03T12:47:21.980 に答える