我在 SharePoint 托管的应用程序中遇到问题。我要做的就是获取运行应用程序的网络列表并使用这些列表。
使用此代码,我可以在 AppWeb 中获得列表:
this.web = context.get_web();
this.lists = this.web.get_lists();
this.context.load(this.lists);
我已经尝试过类似的方法来从 HostWeb 获取列表:
this.context = new SP.ClientContext("https://sharepoint-server.com/_layouts/15/start.aspx#/");
var oWebsite = client.get_web();
this.lists = oWebsite.get_lists();
this.context.load(this.lists);
但它不会从这个网络返回列表。
有人能帮助我吗?
非常感谢!