无法让ClientContext.executeQuery()在javascript中工作

时间:2012-08-27 18:28:39

标签: javascript sharepoint-2010

我从sharepoint列表中获取信息,然后我想使用该数据。问题是我需要在使用之前从Sharepoint服务器更新数据,但我无法使executeQuery()工作。我可以让executeQueryAsync()工作。这是我的代码:

// Global variables;
var context;
var web; 
var list;
var howManyItem = 0;
var allItems;
var randNums = [];

// Initializes the variables; Sets listname; Gets all items; 
function init(){

    context = new SP.ClientContext.get_current();
    web = context.get_web();

    // Enter the list name;
    this.list = web.get_lists().getByTitle('LetsTalkAdded');

    // Get item count in the query/list;
    var query = SP.CamlQuery.createAllItemsQuery();
    allItems = list.getItems(query);
    context.load(allItems, 'Include(Title)');
    context.executeQueryAsync(Function.createDelegate(this, this.success), Function.createDelegate(this, this.failed)); 
}

这样可以正常工作,但是当我将最后一行更改为:

context.executeQuery(Function.createDelegate(this, this.success), Function.createDelegate(this, this.failed)); 

它不再有效,但我不能异步运行它们。如果我这样做,我的代码中依赖于该信息的部分不起作用。为什么executeQuery()函数不起作用?

2 个答案:

答案 0 :(得分:3)

我一直在尝试使用ExecuteQuery而不是Async版本。从我发现的JSOM不支持非Async版本。所以你必须使用Async版本。

看着他的号码6。 http://blogs.msdn.com/b/sharepointdev/archive/2011/07/19/working-with-the-ecmascript-client-object-model-jsom-in-sharepoint-2010-part-3-nikhil-sachdeva.aspx

答案 1 :(得分:-6)

executeQueryAsync无法填充全局变量。它的唯一用途是向用户显示警报。除此之外没有用处。