我们正在编写WeClapp扩展程序(https://www.weclapp.com/api2/)。 WeClapp中的自定义属性可以添加到几乎所有数据类型中。这些属性可通过嵌套的JSON对象数组访问。
接口示例:
export interface ICustomAttribute {
attributeDefinitionId: string;
booleanValue?: boolean;
dateValue?: number;
entityId?: string;
numberValue?: number;
selectedValueId?: string;
stringValue?: string;
}
export interface IContact {
id: string;
...
customAttributes: ICustomAttribute[];
email: string;
...
}
响应示例:
{
"id": "4317",
...
"customAttributes": [
{
"attributeDefinitionId": "4576",
"booleanValue": null,
"dateValue": null,
"entityId": null,
"numberValue": null,
"selectedValueId": null,
"selectedValues": null,
"stringValue": "Test"
},
{
"attributeDefinitionId": "69324",
"booleanValue": true,
"dateValue": null,
"entityId": null,
"numberValue": null,
"selectedValueId": null,
"selectedValues": null,
"stringValue": null
}
],
...
"email": "name@domain.com",
...
}
访问IContact(在以下示例中为联系人)属性没有问题,期望使用[customAttributes]
属性。如何访问和处理数据?
在下面的示例contact = IContact
中:
console.log(contact);
输出:
[
{
id: '102570',
...
customAttributes: [ [Object], [Object], [Object], [Object] ],
...
}
]
console.log(contact.id); //Outputs: 102570
console.log(contact.customAttributes); //Outputs: undefined
JavaScript数组扩展(length
,ForEach
,...)在[contact.customAttributes]
上不可用,因为它是undefined
:
let attributes = new Array(0);
attributes = attributes.concat(record.customAttributes);
console.log(attributes); // Outputs: [undefined]
我还试图更改界面并尝试重新解析:
export interface IContact {
id: string;
...
customAttributes: string;
email: string;
...
}
...
let attributes Array<ICustomAttribute> = JSON.Parse(record.customAttributes);
我不知道为什么无法访问该阵列。最奇怪的是设置属性不会引发任何错误:
let attribute: ICustomAttribute = { attributeDefinitionId: "4576", stringValue: "Test" };
let contact = { customAttributes: [attribute] };
此新条目可以过帐并返回,如上所示。
JSON.stringify(contact)
的输出:
[{"id":"102871",...,"customAttributes":[{"attributeDefinitionId":"4229"},{"attributeDefinitionId":"46381"},{"attributeDefinitionId":"69316"},{"attributeDefinitionId":"98781","stringValue":"77b5d0f1-b1a4-4957-8ea2-ea95969e3c03"}],...,"email":"name@domain.com"}]
console.log(contact["customAttributes"])
的输出为undefined
。
答案 0 :(得分:0)
尝试console.log(contact['customAttributes']);
答案 1 :(得分:0)
如果您的console.log(contact)
产生:
[
{
id: '102570',
...
customAttributes: [ [Object], [Object], [Object], [Object] ],
...
}
]
这表明contact.customAttributes
不存在。 contact
是一个对象数组,要到达第一个对象,您需要contact[0].customAttributes