fields
- fields
使用范围: client
编程语言: javascript
父类: Item 类
描述说明
列举出了实体项的所有的 字段 对象。
示例
function customer_fields(customers) {
customers.open({limit: 1});
for (var i = 0; i < customers.fields.length; i++) {
console.log(customers.fields[i].field_caption, customers.fields[i].display_text);
}
}