Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
312 views
in Technique[技术] by (71.8m points)

javascript - String URL to json object

I was trying to make a JSON Object from a String URL without success

i have this:

var URL = "http://localhost/index.php?module=search&param1=4";

i need this:

var dir = index.php;
var result = {
           module:'search',
           param1:4
             };

Can anyone help me with the code?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's not entirely correct to post a link here, but in this case what OP needed is just some library to parse urls.

And here it is: http://james.padolsey.com/javascript/parsing-urls-with-the-dom/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...