English 中文(简体)
摘除从json_encoded string on the keys上的双引
原标题:Remove double-quotes from a json_encoded string on the keys

我有一只json_encoded阵列,罚款。

我需要从一项职能呼吁中取消对出租车的所有钥匙的双重引用。

我将如何做到这一点,并成功返回?

感谢!

I do apologise, here is a snippet of the json code:

{"start_date":"2011-01-01 09:00","end_date":"2011-01-01 10:00","text":"test"}

Just to add a little more info:

我将听取日本宇宙航空研究开发机构的请求,这样,如果会比较容易的话,我可以就如何在javascript一侧这样做发表意见。

最佳回答

EDITED as per anubhava s comment

$str =  {"start_date":"2011-01-01 09:00","end_date":"2011-01-01 10:00","text":"test"} ;
$str = preg_replace( /"([^"]+)"s*:s*/ ,  $1: , $str);
echo $str;

这无疑有助于上述努力,尽管也许有一些近似的事例,我认为这些案例不会奏效。 这是否适合您的目的,取决于说明的形式和内容/价值如何固定。

问题回答

TL;DR: Missing quotes is how Chrome shows it is a JSON object instead of a string. Ensure that you have Header( Content-Type: application/json; charset=UTF8 ); in PHP s AJAX response to solve the real problem.

DETAILS: A common reason for wanting to solve this problem is due to finding this difference while debugging the processing of returned AJAX data.

In my case I saw the difference using Chrome s debugging tools. When connected to the legacy system, upon success, Chrome showed that there were no quotes shown around keys in the response according to the debugger. This allowed the object to be immediately treated as an object without using a JSON.parse() call. Debugging my new AJAX destination, there were quotes shown in the response and variable was a string and not an object.
I finally realized the true issue when I tested the AJAX response externally saw the legacy system actually DID have quotes around the keys. This was not what the Chrome dev tools showed. The only difference was that on the legacy system there was a header specifying the content type. I added this to the new (WordPress) system and the calls were now fully compatible with the original script and the success function could handle the response as an object without any parsing required. Now I can switch between the legacy and new system without any changes except the destination URL.





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签