我正在尝试验证列表是否具有特定的字段列表,它会不断返回该列表中的所有现有字段,我该如何使其工作?有没有更好的方法来实现我的目标?
sp.web.lists.getByTitle("SliceBox").fields.select("Title","Body","Link","Picture","Visible").get()
.then( (fields: any[]) => {
console.log("> number of fields returned:", fields.length);
fields.forEach(f => {
console.log("> field:", f);
})
})
.catch( err => {
console.log("> fields failure: ", err);
});
答案 0 :(得分:1)
在上述情况下,我们将不得不使用“过滤器”
sp.web.lists.getByTitle("SliceBox").fields.filter("((Title eq 'Title') or (Title eq 'Body'))").get()
我们可以为更多过滤器添加更多“或”。
当我们使用“选择”时,它仅返回该字段内的那些选定属性。意味着,如果我们使用select('Title')
,它将仅返回所有字段的“ Title”属性。