为什么在操作中不起作用 CAMLQueryOptions 代码:在 SPservices 中"GetListItems"显示所有没有文件夹的项目?



这是我的代码,工作良好的文件夹,但我想得到所有项目没有文件夹。

获取列表项的代码。

var qo = '<QueryOptions><ViewAttributes Scope="Recursive"/></QueryOptions>';    
$().SPServices({
operation: "GetListItems",
async: false,
listName: list,
CAMLViewFields: f,
CAMLLimit: l,
CAMLQuery: q,    
CAMLQueryOptions: qo,

completefunc: function (xData, Status) {
 $(xData.responseXML).find("[nodeName='z:row']").each(function(i) {
        var liHtml = "<tr><td>" + $(this).attr("ows_Title") + "</td> <td>" + $(this).attr("ows_LinkFilenameNoMenu") + "</td> <td>" + $(this).attr("ows_Created") + "</td>  </tr>";
        var title = $(this).attr("ows_LinkTitle")
      $("#tasksUL").append(liHtml);
  });
   }
 });

溶液清澈如水晶。

修改代码:

$(xData.responseXML).find("[nodeName='z:row']").each(function(i) {

:

$(xData.responseXML).SPFilterNode("z:row").each(function() {   

相关内容

  • 没有找到相关文章

最新更新