我需要设置一个异步回调,因为一个函数从远程位置获取内容。我正在这样做:
$.when( priv[box.view.renderWith](content, box.view.gadget_id) ).then(function(late) {
console.log("done");
console.log(late)
console.log($(content))
$(content).append(late).enhanceWithin();
});
我的when
函数触发了一个 Ajax 请求。在它的回调中,我返回一个元素以追加到$(content)
.
我的问题是,then
在我的 ajax 回调运行并返回一些东西之前,该函数会立即触发。
问题:
不能when()
与发出 ajax 请求的函数一起使用吗?我必须直接发出ajax请求when()
吗?或者为什么会then()
立即触发?我该如何解决这个问题?
谢谢!
编辑: 我当前版本的片段:
$.when( priv[box.view.renderWith](content, box.view.gadget_id) ).then(function(fragment) {
// DOM manip...
console.log("NOW WE ARE DONE WITH WHEN");
console.log(fragment)
$(content).append(fragment).enhanceWithin();
});
我正在调用的函数(没有内容生成部分):
priv.constructListbox = function (element, internal) {
var no_data_body,
no_data_cell,
portable,
gadget_id = element.getAttribute("data-gadget-id") || internal,
settings = priv.gadget_properties[gadget_id],
portal_type = settings.portal_type_title,
// wrapper
$parent = $(element.parentNode);
if (settings !== undefined) {
// ASYNC > this will trigger an Ajax request
portable = priv.erp5.allDocs({
"query": "type: \"" + settings.datasource + "\"",
"limit": [0, (settings.configuration.pagination.items_per_page_select[0] || 30)],
"wildcard_character": "%",
"include_docs": true
}).always(function (answer) {
.... stuff ...
// finish
// return to calling function
if (internal) {
console.log("foo");
console.log("no we only give back a fragment");
return fragment_container;
}
$parent.empty().append( fragment_container ).enhanceWithin();
});
// if internal call, return the promise object
if (internal) {
console.log("foo internal, promise");
return portable;
}
} else {
// error handler
}
};
portable
当我在then
回调中进行控制台时,我得到了promise
对象,所以现在该函数返回了 Promise 与元素。但是,当解决时,我希望fragment_container
在我没有得到任何东西的时候得到我的……得到任何东西:-(
希望足够清楚。