通过SharePoint Online外接程序中的CSOM / JSOM获取SharePoint ClientContext

时间:2015-10-21 17:08:19

标签: asp.net add-in csom sharepoint-online sharepoint-jsom

我到处寻找解决这个问题的方法,并且已经做得很短。如果有人能告诉我诀窍我会很高兴。

范围:我正在为SharePoint Online构建SharePoint加载项。在appweb中,我尝试使用Web部件通过CSOM或JSOM获取ListItem的ClientContext。我不能使用沙盒解决方案。

主要目标:我需要ClientContext,因此我可以获取ListItem的主体,使用GetBytes,并说zip或UTF8编码正文。我还需要使用SP.ListOperation.Selected.getSelectedItems(clientContext)来选择用户选择的多个ListItem。

代码示例(未完成):

 <script>
        SP.SOD.executeFunc('sp.js', 'SP.ClientContext', sharePointReady);

        function helloWorldTest() {
            alert("Function helloWorldTest Active");
            var listURL = '/sites/dev/';
            var clientContext = new SP.ClientContext(listURL);
            var olist = clientContext.get_web().get_lists().getByTitle('Secure List')

            var currentLib = web.get_lists().getById(currentlibid); //Gets the current Library
            var selectedItems = SP.ListOperation.Selection.getSelectedItems(clientContext);
            for (var i in selectedItems) {
                var currentItem = currentLib.getItemById(selectedItems[i].id);
                context.load(currentItem);
                for (i in items) {
                    selItems += '|' + selectedItems[i].id;
                }


            }
        }


                /*
                var itemCreateInfo = new SP.ListItemCreationInformation();
                this.oListItem = oList.addItem(itemCreateInfo);

                oListItem.set_item('Title', 'Test');
                oListItem.set_item('Body', 'Hello World!');

                oListItem.update();

                clientContext.load(oListItem);

                clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
                alert("fuction complete");
            }

            function onQuerySucceeded() {

                alert('Item created: ' + oListItem.get_id());
            }

            function onQueryFailed(sender, args) {

                alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
            }
        }
        */
    </script>

我真的很感激帮助。谢谢。

1 个答案:

答案 0 :(得分:0)

如果您尝试获取当前站点的客户端上下文,则可以使用:

SP.ClientContext.get_current()

如果您尝试构建客户端上下文以从应用程序Web访问主机Web,则需要使用主机Web的完整URL。在上面的代码中,您看起来像是在构建客户端上下文:

var listURL = '/sites/dev/';
var clientContext = new SP.ClientContext(listURL);

这是一个相对URL,在创建客户端上下文时不起作用。通常,主机Web的URL可用作名为SPHostUrl的查询字符串参数,因此您可能必须从那里获取它。并且知道它必须是网站的URL,例如 http://server/sites/dev/ ,而不是 http://server/sites/dev/default.aspx 或该网站资源的其他网址。