I have an object like this.
var obj = {Id:1,Rate:5,Price:200,Name:"History"}
And a template like this.
var templateString = '<option id="{Id}">{Name}</option>'
I want to replace the template values with object values. How can i do this. I am no expert of javascript regular expressions.
The desired output
var optionString = '<option id="1">History</option>'
Fiddle Sample
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…