is, for example,
`var tempData= [{
FieldDes:"",
FieldName:"Male",
Unit:"",
Value:4
}, {
FieldDes:"",
FieldName:"Female",
Unit:"",
Value:3
}] `;
how to use js to transform into a structure suitable for binding on the page?
for example, convert to
var tempData={Male:4,Female:3}