Sto scrivendo una demo API REST personalizzata; ora può restituire numeri e stringhe nella mia demo, ma voglio che restituisca un oggetto JSON come altre API REST.
Nella mia demo, chiamo l'API Magento 2 (ovvero ottengo le informazioni sul cliente: http: //localhost/index.php/rest/V1/customers/1 ) con arricciatura e restituisce una stringa JSON:
"{\" id \ ": 1, \" group_id \ ": 1, \" default_billing \ ": \" 1 \ ", \" Created_at \ ": \" 2015-12-13 14: 57: 30 \ " , \ "updated_at \": \ "2016-12-13 15:20:19 \", \ "Created_in \": \ "Visualizzazione archivio predefinita \", \ "email \": \ "75358050@qq.com \ ", \ "Nome \": \ "Azol \", \ "cognome \": \ "giovane \", \ "STORE_ID \": 1, \ "website_id \": 1, \ "indirizzi \": [{ \ "id \": 1, \ "customer_id \": 1, \ "regione \": {\ "region_code \": \ "AR \", \ "regione \": \ "Arad \", \ "region_id \ ": 279}, \" region_id \ ": 279, \" country_id \ ": \" RO \ "\ "strada \": [\ "abc \"], \ "telefono \": \" 111 \ ",\"codice postale\":\"1111 \", \ "città \": \ "def \", \ "Nome \": \ "Azol \", \ "cognome \": \ "giovane \", \ "default_billing \": true}], \ "disable_auto_group_change \": 0}"
La risposta è una stringa JSON, ma tutte le chiavi hanno una barra all'interno. So che posso rimuovere la barra con str_replace
, ma è un modo stupido. Esiste un altro modo per restituire un oggetto JSON senza barre all'interno delle chiavi?
************ AGGIORNAMENTO 2016.12.27 ************
Ho incollato il mio codice di test qui:
$method = 'GET';
$url = 'http://localhost/index.php/rest/V1/customers/1';
$data = [
'oauth_consumer_key' => $this::consumerKey,
'oauth_nonce' => md5(uniqid(rand(), true)),
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => time(),
'oauth_token' => $this::accessToken,
'oauth_version' => '1.0',
];
$data['oauth_signature'] = $this->sign($method, $url, $data, $this::consumerSecret, $this::accessTokenSecret);
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => [
'Authorization: OAuth ' . http_build_query($data, '', ','),
'Content-Type: application/json'
],
]);
$result = curl_exec($curl);
curl_close($curl);
// this code has slash still
//return stripslashes("hi i\" azol");
// has slashes still
//return stripcslashes("{\"id\":1,\"group_id\":1,\"default_billing\":\"1\",\"created_at\":\"2016-12-13 14:57:30\",\"updated_at\":\"2016-12-13 15:20:19\",\"created_in\":\"Default Store View\",\"email\":\"75358050@qq.com\",\"firstname\":\"azol\",\"lastname\":\"young\",\"store_id\":1,\"website_id\":1,\"addresses\":[{\"id\":1,\"customer_id\":1,\"region\":{\"region_code\":\"AR\",\"region\":\"Arad\",\"region_id\":279},\"region_id\":279,\"country_id\":\"RO\",\"street\":[\"abc\"],\"telephone\":\"111\",\"postcode\":\"1111\",\"city\":\"def\",\"firstname\":\"azol\",\"lastname\":\"young\",\"default_billing\":true}],\"disable_auto_group_change\":0}");
// has slashes still
//return json_encode(json_decode($result), JSON_UNESCAPED_SLASHES);
// this code will throw and expcetion:
// Undefined property: *****\*****\Model\Mycustom::$_response
//return $this->_response->representJson(json_encode($data));
return $result;
$json_string = stripslashes($result)
ereturn json_decode($json_string, true);
return json_encode($result, JSON_UNESCAPED_SLASHES);
?