admin管理员组文章数量:1340286
Here I want to convert my encoded url into JSON format. The encoded url is:
http://localhost:63342/AngularJs/services/e_cell.html#!/%7B%22book%22:%22ABC%22%7D
Here I want to convert my encoded url into JSON format. The encoded url is:
http://localhost:63342/AngularJs/services/e_cell.html#!/%7B%22book%22:%22ABC%22%7D
Share
Improve this question
edited May 25, 2017 at 14:10
Abraham Murciano Benzadon
1,72318 silver badges35 bronze badges
asked May 25, 2017 at 10:09
vaishali bagulvaishali bagul
612 gold badges2 silver badges7 bronze badges
3
- 1 It's unclear what you're asking. Show us your expected output. – Mitya Commented May 25, 2017 at 10:13
-
1
have u even tried to search on stackoverflow..it asked many times.. try if it works for you
encodeURIComponent(JSON.stringify("http://localhost:63342/AngularJs/services/e_cell.html#!/%7B%22book%22:%22ABC%22%7D"))
– Dhara Commented May 25, 2017 at 10:14 - This code again encode the URL !!@Dhara – vaishali bagul Commented May 25, 2017 at 10:27
2 Answers
Reset to default 8As much as I understand from your URL you are trying to post this %7B%22book%22:%22ABC%22%7D
data in query string.
So first you need to decode your URL encoded data into an string which can be parsed. For that you can take help of decodeURIComponent()
javascript API.
decodeURIComponent()
- this function decodes an encoded URI ponent back to the plain text i.e. like in your encoded text it will convert %7B
into opening brace {
. So once we apply this API you get -
//output : Object { book: "ABC" }
This is a valid JSON string now you can simply parse. So what all you need to do is -
var formData = "%7B%22book%22:%22ABC%22%7D";
var decodedData = decodeURIComponent(formData);
var jsonObject = JSON.parse(decodedData);
console.log(jsonObject );
The JSON.parse()
method parses a JSON string, constructing the JavaScript value or object described by the string
The decodeURIComponent
function will convert URL encoded characters back to plain text.
var myJSON = decodeURIComponent("%7B%22book%22:%22ABC%22%7D");
var myObject = JSON.parse(myJSON);
本文标签: javascriptHow to convert Encoded url into JSON formatStack Overflow
版权声明:本文标题:javascript - How to convert Encoded url into JSON format? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631538a2513192.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论