for (i = 0; i < result.length; i++) {
var Temp_Name = result[i];
var Temp_Val = result[i].val();
console.log("temp name is ", Temp_Name);
console.log("temp val is ",Temp_Val);
}
How to get Temp_Val ? Current method is not working.
HTML Code:
<input type = "Text" id={{this.Temp_Name}}>
I want to store the values of result in DB.
result is [Brand,Size,Product]
Values have to be entered by user in HTML
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…