我正在尝试获取所有记录字段并创建oData查询并获得一些responseTxt
"d" : {
"results": [
"statuscode": {
"__metadata": {
"type": "Microsoft.Crm.Sdk.Data.Services.OptionSetValue"
}, "Value": 1
}
等
我检查了所有字段及其值在responseText中,然后我得到了数组
var GetVal = JSON.parse(this.responseText).d;
现在我需要在
中获取所有字段名称GetVal.results[0]
因为我可以获得某些字段的值,例如
GetVal.results[0]["new_name"]
我该怎么做?