use javascript to retrieve multiple sharepoint lists

1k Views Asked by At

I was just wondering if its a good idea to load more than one list in the same function as all of them use the same success callback , Code example:

function retrieveListItems() {

    var clientContext = new SP.ClientContext.get_current();
    var camlQuery = new SP.CamlQuery.createAllItemsQuery();
    employerList = clientContext.get_web().get_lists().getByTitle('Employer Partners').getItems(camlQuery);
    pocList = clientContext.get_web().get_lists().getByTitle('Points of Contact').getItems(camlQuery);

    var lists = [employerList, pocList];
    for (var i = 0; i < lists.length; i++) {
        clientContext.load(lists[i]);
    }

    clientContext.executeQueryAsync(
        Function.createDelegate(this, this.onQuerySucceeded),
        Function.createDelegate(this, this.onQueryFailed)
    );
}

The code runs on some occasions but fails with "The collection has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested." on other occasions.

1

There are 1 best solutions below

0
On

Try using jquery ajax, create a function that returns the ajax promise then call the .then() method and execute the second request this way you will not experience async problems on the retrieval of the items.

check this for more info:

AJAX Jquery

Hope this helps