I currently am dealing with a Web Service that is returning an array of strings to the client. From here I would like to take this array of strings and convert it into an object that gives each string a name so to reference it later.
So start with this:
var result = ["test", "hello", "goodbye"];
And I would like to end up with this:
var final = [{'value': "test"}, {'value': "hello"}, {'value': "goodbye"}];
I use jquery. Is there a easy to accomplish this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…