我是Sharepoint的新手,我在一个问题上陷入困境。我正在使用PnP / PnPjs,并且试图从网站“列”之一中获取选择字段。我尝试使用SPWeb等,但是打字稿中有此问题。有什么方法可以导入此数据,也可以以其他方式获取此数据吗?
请参考以下代码段:
获取选择站点列定义:
import { sp } from "sp-pnp-js";
let web = sp.web;
web.fields.getByTitle("testchoice").get().then(f => {
console.log(f);
});
获取列表中使用的选择站点列的值:
web.lists.getByTitle("MyList").items.getById(2).get().then((item: any) => {
console.log(item.testchoice);
});
参考: