次のjsonを出力するmagentoショップとのリンクがあります(テスト目的で偽の値を無視してください)。
jsfiddle http://jsfiddle.net/ZkZ4D/
きれいではないフォーマット、phpによる出力
[[{"customer_address_id":"4","created_at":"2013-01-14 10:49:59","updated_at":"2013-01-14 10:49:59","city":"abc town","country_id":"NL","firstname":"john","lastname":"doe","postcode":"7091 eh","street":"mwhahah 47\nmwhgahahahaha","telephone":"31645494440","is_default_billing":true,"is_default_shipping":true}],[{"customer_address_id":"4","created_at":"2013-01-14 10:49:59","updated_at":"2013-01-14 10:49:59","city":"abc town","country_id":"NL","firstname":"john","lastname":"doe","postcode":"7091 eh","street":"mwhahah 47\nmwhgahahahaha","telephone":"31645494440","is_default_billing":true,"is_default_shipping":true}]]
人間の読書のためのきれいなフォーマット
[
[
{
"customer_address_id": "4",
"created_at": "2013-01-14 10:49:59",
"updated_at": "2013-01-14 10:49:59",
"city": "abc town",
"country_id": "NL",
"firstname": "john",
"lastname": "doe",
"postcode": "7091 eh",
"street": "mwhahah 47\nmwhgahahahaha",
"telephone": "31645494440",
"is_default_billing": true,
"is_default_shipping": true
}
],
[
{
"customer_address_id": "4",
"created_at": "2013-01-14 10:49:59",
"updated_at": "2013-01-14 10:49:59",
"city": "abc town",
"country_id": "NL",
"firstname": "john",
"lastname": "doe",
"postcode": "7091 eh",
"street": "mwhahah 47\nmwhgahahahaha",
"telephone": "31645494440",
"is_default_billing": true,
"is_default_shipping": true
}
]
]
上記のjsonを取得するにはどうすればよいですか?
phpコード
class ajax extends plantinaNLmagento
{
public function __construct()
{
parent::__construct();
}
public function getCustomerAdressAjax()
{
$id = (int)$_GET['customerid'];
$q = $this->db->query("SELECT * FROM `tbl_magento_users` WHERE `core_id`=:ID",array('ID'=>$id));
$customeradresses = array();
while($who = $q->fetchObject())
{
$x=$this->mage->call('customer_address.list',$who->magento_ID);
array_push($customeradresses,$x);
array_push($customeradresses,$x);
}
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');
echo json_encode($customeradresses);
}
}
$customeraddress
テスト目的で2回プッシュしています。
結果のjsonをjsonlintまたは他のjsonバリデーターに貼り付けると、すべて有効なjsonであると表示されます。
関数JSON.parseまたはjQuery.parseJSONで使用すると、予期しないトークンエラーが発生しますが、どのトークンまたは場所が表示されません。また、jsonが評価を通過するため、どのトークンが失敗するかがまったくわかりません。で。
私はfacepalmのカテゴリーで何かを見逃しているに違いありませんが、私は単にそれを見つけることができません...
エラーメッセージ
SyntaxError: Unexpected token