我正在尝试控制台记录 .then() 之外的变量 arrItems。有什么建议吗?提前致谢。
protected fun(){
sp.web.lists.getByTitle("Requests")
.items.get()
.then((items: any[]) => {
var arrItems = items.map((order) => {
var info = {
"Id": order.Id, "File": order.FileName
}
return info;
})
console.log(arrItems) // works
},
);
console.log(arrItems) // doesent works
}
素胚勾勒不出你
相关分类