我可能在这里错过了一些非常基本的东西,但是我似乎找不到错误,并且越来越令人沮丧。我只是想从我的开发SharePoint网站中提取列表(然后列出项目,但一次只能提取一件事)。
我已经建立了第一个延迟方法,控制台日志显示该方法已完成,但是随后出现“错误:对象不支持属性或方法'then'”,就好像jQuery失败了一样。
供参考,我尝试遵循此处描述的方法:http://www.shillier.com/archive/2013/03/04/using-promises-with-the-javascript-client-object-model-in-sharepoint-2013.aspx
这是代码:
<script src="jquery-1.11.2.js"></script>
<script type="text/javascript">
$(function () {
GetSiteLists.bListsGotten().then(
function (oWebLists) {
// Get Lists Succeeded
alert('Lists Retrieved');
}
, function (sender, args) {
// Get Lists Failed
alert('Lists Not Retrieved');
}
);
});
GetSiteLists = function () {
var bListsGotten = function () {
var deferred = $.Deferred();
var oContext = new SP.ClientContext.get_current();
console.log('oContext instantiated');
var oWeb = oContext.get_web();
console.log('oWeb instantiated');
this.oWebLists = oWeb.get_lists();
console.log('oWebLists command set');
oContext.load(this.oWebLists);
console.log('context load command set');
oContext.executeQueryAsync(
Function.createDelegate(this,
function () { deferred.resolve(this.oWebLists); }),
Function.createDelegate(this,
function (sender, args) { deferred.reject(sender, args); }));
console.log('list retrieval query executed async');
console.log('returning promise');
return deferred.promise;
}
return {
bListsGotten: bListsGotten
}
}();
</script>
最佳答案
promise
是一个函数,您没有在调用它。
return deferred.promise()
会解决的。
关于javascript - jQuery延迟并 promise -错误:对象不支持属性或方法'then',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29246211/