2

我正在使用 javascript 处理 Sharepoint 客户端对象模型,并希望尽可能多地使我的代码可重用。

使用 COM 的示例通常看起来像这样,先调用一个成功的委托函数,然后输出结果。

function loadProfile()
{
    var context = SP.ClientContext.get_current();         
    var web = context.get_web();         
    var userInfoList = web.get_siteUserInfoList();
    camlQuery = new SP.CamlQuery();         
    camlQuery.set_viewXml('');         
    this.listItems = userInfoList.getItems(camlQuery);         
    context.load(listItems);         
    context.executeQueryAsync(Function.createDelegate(this, this.onProfileSuccessMethod), Function.createDelegate(this, this.onFail));     

}
function onProfileSuccessMethod(sender, args) 
{
    var item = listItems.itemAt(0);
    var first_name = item.get_item('FirstName');
    var last_name = item.get_item('LastName');
    alert(first_name + " " + last_name);
}

function onFail(sender, args)
{
  alert('Error: ' + args.get_message() + '\n' + args.get_stackTrace());
}

我想要实现的是能够在实例化一个对象后返回值,但鉴于它是异步的,我不确定这是怎么可能的,我是否需要在返回值之前“监听”完成调用。

会是这样吗?或者你不能在它创建它的函数内部没有一个委托函数。为我有限的理解道歉!

var profile = new loadProfile("testid");
alert(profile.onProfileSuccessMethod());


function loadProfile (id) 
{
    this.user_id = id;
    var context = SP.ClientContext.get_current();         
    var web = context.get_web();         
    var userInfoList = web.get_siteUserInfoList();
    camlQuery = new SP.CamlQuery();         
    camlQuery.set_viewXml('');         
    this.listItems = userInfoList.getItems(camlQuery);         
    context.load(listItems);         
    context.executeQueryAsync(Function.createDelegate(this, this.onProfileSuccessMethod), Function.createDelegate(this, this.onFail));    
   this.onProfileSuccessMethod = function() 
{
    var item = listItems.itemAt(0);
    this.first_name = item.get_item('FirstName');
    this.last_name = item.get_item('LastName');
        return this.first_name


    };
}
4

1 回答 1

0

如果它是异步的,则不可能从中返回值。您需要使用回调模式。

function secondStep(data){
    console.log(data)
}

var profile = new loadProfile("testid", secondStep);

function loadProfile (id, callback) 
    ...
    this.onProfileSuccessMethod = function(){
        callback({});
    }
于 2012-10-24T13:53:47.573 回答