这是我的代码,工作良好的文件夹,但我想得到所有项目没有文件夹。
获取列表项的代码。
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() {