SPServices文档SorceDoc ID

时间:2018-09-12 21:08:20

标签: guid spservices

有人知道如何获取文档GUID(而不是商品ID)吗?

我正在使用SPServices运行促销文档库。我希望能够将每个项目嵌入HTML div上以创建图块。

enter image description here

在SharePoint 2013中,您可以单击“嵌入”按钮为您提供代码,以便您可以在网站上呈现相同的图块预览。问题是我不确定如何获取文档标识符,它看起来像是GUID {###-### AB-### CDE-####}的列表,但我不知道SPServices代码将其选中。

我正在使用标准的SPServices操作:“ GetListItems”,但不确定如何对该数字进行CAMLViewFields:

        $().SPServices({
    operation: "GetListItems",
    async: false,
    webURL: url,
    listName: "Residential_SellSheets",
    CAMLViewFields: "<ViewFields><FieldRef Name='ID'/><FieldRef Name='LinkFilename'/></ViewFields>",
    //CAMLQuery: "<Query><OrderBy><FieldRef Name='Title' Ascending='true'/></OrderBy></Query>",
    completefunc: function (xData, Status) {
        $(xData.responseXML).find("z\\:row").each(function() {
          var guid = xxxxx
        }
});

$('#div').html(embed code + guid)

0 个答案:

没有答案