SHAREPOINT 2013:如何阅读网站列内容并通过javascript csom进行修改?

时间:2015-04-28 10:03:46

标签: javascript sharepoint-2013 csom

我是Sharepoint 2013的新手,我试图访问并在页面上显示特定"网站列中的内容",我一直在阅读很多关于这一点,但我仍然无法完成我的任务。到目前为止,我得到了这个:

'use strict';
        var hostweburl;
        var appweburl;
        $(function () {
            SP.SOD.executeOrDelayUntilScriptLoaded(Function.createDelegate(this, function () {
                var currentcontext = new SP.ClientContext.get_current();

                var web = currentcontext.get_web();

                //Get all fields in site collection
                var collFields = web.get_availableFields().getByTitle("EngineType_EngineCycle");

                currentcontext.load(collFields);

                currentcontext.executeQueryAsync(Function.createDelegate(this, ExecuteOnSuccess), 
                Function.createDelegate(this, ExecuteOnFailure)); 
            }), 'SP.js'); 

            function ExecuteOnSuccess(sender, args) 
            { 
                var subsites = ''; 

                //for(int i=0; i< collF {
                //    if(collFields[i].Title == "siteColumnName"){
                //        alert("Got the Site col");
                //    }
                //}

            }
            function ExecuteOnFailure(sender, args) { 
                alert("error"); 
            } 
         });

但是现在我不知道在CollField中访问/检索我需要的数据,也许我在某个地方出错了?请帮忙。非常感谢。

0 个答案:

没有答案