3

使用通过 JQuery 查询 SharePoint 列表 (2010) 时出现此错误 集合尚未初始化。它尚未被请求或请求尚未执行。可能需要明确请求。

我正在遍历 html 选择元素中的所有选项并查询 SharePoint 列表。

     $("#IdeasStatus option").each(function()
    {
        statusCount = statusCount + 1;
        lstStatus.push($(this).val());            
    });

    for (var i = 0; i < lstStatus.length; i++) {
         *****Some Code*********
       retItems = spList.getItems(caml);                       
       spContext.load(retItems);
      spContext.executeQueryAsync(onCategorySuccess, onCategoryFail);}

我在下面的函数中遇到错误

    function onCategorySuccess(sender, args) {
    executionCount++;
    $('input[id$=hidChartParam1]').val($('input[id$=hidChartParam1]').attr('value') + ',' + status);
    $('input[id$=hidChartParam2]').val($('input[id$=hidChartParam2]').attr('value') + ',' + retItems.get_count());
    if (executionCount == statusCount) {
        FillPieChart();
    }
}

获取计数retItems.get_count()时引发错误,我认为这是因为在循环和进行多个异步调用时使用了相同的变量名 (retItems)?

请建议我该怎么办?

4

2 回答 2

0

你打电话onCategorySuccess到别处了吗?看起来您onCategorySuccess在实际填写retItems值之前。

于 2013-06-20T07:19:46.830 回答
0

我相信在调用 spList.getItems 之前的某个时候,您应该将 spList 加载到上下文中

于 2014-02-09T11:58:10.317 回答