在 json 中,我们可以通过传递变量 value 来获取属性值。方法
当我的“returnData”json对象中存在“name”属性时,它对我有用
// It works
var getColValue= returnedData[0].name
但它给出了未定义的错误
// It Not works
var refVar ="name";
var getColValue= returnedData[0].refVar;