- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这里,我分配了这个 promise ,即我正在记录到临时全局变量 temp1
。如您所见,当我输出 temp1
的状态时,它返回 resolved
。然而,当我将 done
处理程序附加到 temp1
时,它永远不会触发。
temp1
指的是 $.Deferred
,但我也尝试过使用 temp1.promise().done()
,无济于事。
我做错了什么?
pv5.widgets = new function () {
/**
* @var array _widget_queue A map of widget IDs to promises that are resolved
* when they are loaded
*/
this._widget_queue = [];
/**
* @var array _js_queue A map of JavaScript dependency names to promises that
* are resolved when they are loaded
*/
this._js_queue = [];
/**
* Loads the HTML into the widget's container
* @param object w The widget implementation in pv5.widgets
* @param object widget The widget's configuration data
* @return jQueryPromise A promise that is resolved when the HTML loads
*/
this._get_res = function (w, widget) {
var r = widget.config.res || widget.res;
if (!r) {
return $.Deferred().resolve().promise();
}
typeof r != 'string' && (r = r[pv5.user.auth.role] ? r[pv5.user.auth.role] : 'blank.html');
var path = (widget.product_level || widget.config.product_level ? pv5.widgets._APP_WIDGET_RESOURCE_ROOT : pv5.widgets._WIDGET_RESOURCE_ROOT) + r;
return $.get(path, {_v: pv5._NOCACHE ? new Date().getTime() : ''})
.done(function (html) {
w._owner.html(html + '<div style="clear: both;"></div>');
})
.fail(function () {
console && console.error('Failed to load resource for widget ' + id + '.', arguments);
});
};
/**
* Loads the provided widget and all resources it requires
* @param string id The identifier for the widget
* @param object widgets The widget library map
* @param boolean only_required Only load if it is required
* @return jQueryPromise A promise that resolves when the widget is loaded
*/
this.loadWidget = function (id, widgets, only_required) {
// First, make sure we haven't already started loading it; if we have,
// return the existing promise
var widget_loading = $.inArray(id, $.map(this._widget_queue, function (o) { return o.widget; }));
if (widget_loading > -1) {
return this._widget_queue[widget_loading].promise;
}
// Look in the provided widgets, or merge the registry and activeApp
// widgets if none were provided
widgets = widgets || $.extend({}, pv5.widgets._REGISTRY, pv5.activeApp._WIDGETS, true);
var widget = widgets[id];
// Make sure the widget exists
if (!widget) {
console && console.error('Widget ' + id + ' is not registered in widget library.');
return $.Deferred().reject().promise();
}
// Configure it if it isn't already
if (!widget.configured) {
var configured = $.extend({
_id: id,
required: false,
configured: true,
auth: true,
config: {
required: false,
res: false,
auth: false
}
}, pv5.widgets._REGISTRY[id]);
$.extend(configured.config, widgets[id]);
configured._version = pv5._VERSION + '_' + (configured.version || 0) + '_' + (configured.config.version || 0);
widgets[id] = widget = configured;
}
// Don't load the widget if only_required was passed in and it's not required
// (only_required is used in loadWidgets for page load)
if (only_required && !widget.required && !widget.config.required) {
return $.Deferred().resolve().promise();
}
// Load JavaScript dependencies
if (widget.js || widget.config.js) {
var j = widget.config.js || widget.js;
// Normalize to an array of JavaScript files
typeof j == 'string' && (j = [j]);
j = j || [];
// Create a queue (array of objects with promises)
// For each one, include a full path to the file we need
// The path property is checked to ensure we don't push the same script
// on the queue twice, and finished is just for debugging convenience
// started is checked to see if the script has begun loading
// properties for making debugging easier
// promise is resolved when the script is loaded and it proceeds to the
// next script in the queue
$.map(j, function (script) {
var path = (widget.product_level || widget.config.product_level ? pv5.widgets._APP_WIDGET_JS_ROOT : pv5.widgets._WIDGET_JS_ROOT) + script;
if ($.inArray(path, $.map(pv5.widgets._js_queue, function (o) { return o.path; })) < 0) {
pv5.widgets._js_queue.push({
path: path,
promise: $.Deferred(),
started: false,
finished: false
});
}
});
var load_script = function (index) {
if (index > pv5.widgets._js_queue.length - 1) {
return;
}
var script = pv5.widgets._js_queue[index];
if (!script.started) { // If it hasn't already initiated
script.started = true;
$.getScript(script.path).done(function () {
script.finished = true;
script.promise.resolve();
});
}
script.promise
.done(function () {
load_script(index + 1);
})
.fail(function () {
console && console.error('Failed to load script ' + script.path + '.', arguments);
});
};
load_script(0);
}
// Similar structure for the widget queue
// Queue item is resolved when the widget, all dependencies, and resources are done
this._widget_queue.push({
widget: id,
promise: $.Deferred(),
started: true,
finished: false
});
// Get widget source file
var lib;
if (widget.config.src || widget.src) {
var path = (widget.product_level || widget.config.product_level ? this._APP_WIDGET_ROOT : this._WIDGET_ROOT) + (widget.config.src || widget.src);
lib = $.get(path, {_v: widget._version + (pv5._NOCACHE ? '_' + new Date().getTime() : '')})
} else {
lib = $.Deferred().resolve().promise();
}
// The queue item we created above will resolve when all resources are loaded
// We will return it
var widget_loaded = this._widget_queue[this._widget_queue.length - 1].promise;
// Load the source file before its resources
lib
.done(function () {
// When it's loaded, identify the DOM element (_owner) and also
// add it to the public widgets registry and start to populate it
var w = pv5.widgets[id] = pv5.widgets[id] || {};
w._owner = $(pv5.widgets._WIDGET_DOM_BIND_PREFIX + id).addClass(pv5.user.auth.role);
w._config = widget.config;
// Global events
$.each(['onStart', 'onSetMode', 'onAuthChange'], function (i, event) {
widget[event] && $(document).on('pv5.' + event, $.proxy(widget[event], w));
w[event] && $(document).on('pv5.' + event, $.proxy(w[event], w));
});
// Widget events
$.each(['onHide', 'onShow'], function (i, event) {
widget[event] && w._owner.on('pv5.' + event, $.proxy(widget[event], w));
w[event] && w._owner.on('pv5.' + event, $.proxy(w[event], w));
});
// sync_widgets - Bind another widget to show and hide when this widget is toggled
var sync = widget.config.sync_widgets || widget.sync_widgets;
if (sync && sync.length) {
$.each(sync, function (i, widget) {
w._owner
.on('pv5.onShow', function () { $(pv5.widgets[widget]).show(); })
.on('pv5.onHide', function () { $(pv5.widgets[widget]).hide(); });
});
}
// Check user roles and show or hide content in this widget based on privilege
pv5.widgets._handle_auth(w, widget);
// Create a translate method that runs through the widget's container and
// looks for content that can be replaced with localized content
w.translate = function () {
var _this = this;
$('[data-lang]', _this._owner).each(function () {
var key = $(this).attr('data-lang');
if (key in _this.lang) {
$(this).html(_this.lang[key]);
}
});
_this.onTranslate && _this.onTranslate();
};
// Get the HTML that is dumped into the container
var res = pv5.widgets._get_res(w, widget);
// Get the CSS files and drop them into the <head>
var css = (function () {
var c = widget.config.css || widget.css;
typeof c == 'string' && (c = [c]);
c = c || [];
$.each(c, function (i, stylesheet) {
var path = (widget.product_level || widget.config.product_level ? pv5.widgets._APP_WIDGET_CSS_ROOT : pv5.widgets._WIDGET_CSS_ROOT) + stylesheet;
// Make sure the stylesheet isn't a duplicate
if ($('link[rel="stylesheet"]').filter(function () { return $(this).attr('href').split('?')[0] == path; }).length) {
return true; // continue
}
$('<link>').attr({rel: 'stylesheet', href: path + '?_v=' + (pv5._NOCACHE ? '_' + new Date().getTime() : '')}).appendTo($('head'));
});
return $.Deferred().resolve().promise();
})();
// Load the templates and place them in w.templates object
var templates = (function () {
var t = widget.config.templates || widget.templates;
typeof t == 'string' && (t = [t]);
t = t || [];
if (!t.length) {
return $.Deferred().resolve().promise();
}
w.templates = {};
return $.when.apply($, $.map(t, function (template) {
var path = (widget.product_level || widget.config.product_level ? pv5.widgets._APP_WIDGET_TEMPLATE_ROOT : pv5.widgets._WIDGET_TEMPLATE_ROOT) + template;
return $.get(path, {_v: pv5._NOCACHE ? '_' + new Date().getTime() : ''})
.done(function (html) {
w.templates[template] = html;
})
.fail(function () {
console && console.error('Failed to load widget ' + id + ' template ' + template + '.', arguments);
});
}));
})();
// Load the localized file and drop it into w.lang object
var lang = (function () {
var l = widget.config.has_lang || widget.has_lang;
if (!l) {
return $.Deferred().resolve().promise();
}
var promise = $.Deferred();
var path = (widget.product_level || widget.config.product_level ? pv5.widgets._APP_WIDGET_LANG_ROOT : pv5.widgets._WIDGET_LANG_ROOT) + id + '/' + (pv5.user.lang || 'en') + '.json';
$.get(path, {_v: pv5._NOCACHE ? '_' + new Date().getTime() : ''})
.done(function (lang) {
var done = function () {
$('html').attr('lang', pv5.user.lang || 'en');
w.translate();
};
w.lang = lang;
// Merge the platform-level localization with product-level localization
// if such a thing exists -- this can be used to selectively override global
// language parameters with product-specific ones, e.g. "Welcome" to
// "Welcome to CFAexcel"
if (widget.merge_product_lang || widget.config.merge_product_lang) {
var path = pv5.widgets._APP_WIDGET_LANG_ROOT + id + '/' + (pv5.user.lang || 'en') + '.json';
$.get(path, {_v: pv5._NOCACHE ? '_' + new Date().getTime() : ''})
.done(function (lang) {
w.lang = $.extend({}, w.lang, lang);
done();
})
.fail(function () {
console && console.error('Failed to load widget ' + id + ' platform-level language file ' + (pv5.user.lang || 'en') + '.', arguments);
done();
});
} else {
done();
}
promise.resolve();
})
.fail(function () {
w.lang = {};
console && console.error('Failed to load widget ' + id + ' language file ' + (pv5.user.lang || 'en') + '.', arguments);
promise.resolve();
});
return promise;
})();
// Recover the item in the queue that refers to this widget
var queue_item = pv5.widgets._widget_queue[$.inArray(id, $.map(pv5.widgets._widget_queue, function (o) { return o.widget; }))];
// Resolve and init when HTML, CSS, templates, language, and all JavaScript dependencies have loaded
$.when.apply($, [res, css, templates, lang].concat($.map(pv5.widgets._js_queue, function (o) { return o.promise; }))).done(function () {
queue_item.promise.resolve();
queue_item.finished = true;
w.init && w.init(w._config);
});
})
.fail(function () {
console && console.error('Failed to load widget ' + id + ' lib at ' + path + '.', arguments);
});
return widget_loaded;
};
};
当给定的小部件已经加载时,这是从 pv5.widgets.loadWidget(widget_name)
返回的 promise 。
最佳答案
直接回答你的问题:
var d = $.Deferred().reject(); // create an empty rejected promise
d.state = function(){ return "resolved"; }; // override `state`
d.promise().done(function(){
// without any more quirky stuff - this will never run.
})
除此之外以及类似的肮脏伎俩,pretty much never .
关于javascript - 在什么情况下可以解决 promise 但不触发完成回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25853260/
从 Redis 获取消息时,onDone:(){print('done')} 从未起作用。 import 'package:dartis/dartis.dart' as redis show PubS
昨天我玩了一些vim脚本,并设法通过循环来对当前输入的内容进行状态栏预测(请参见屏幕截图(灰色+黄色栏))。 问题是,我不记得我是怎么得到的,也找不到我用于该vim魔术的代码片段(我记得它很简单):它
我尝试加载 bash_completion在我的 bash (3.2.25) 中,它不起作用。没有消息等。我在我的 .bashrc 中使用了以下内容 if [ -f ~/.bash_completio
我正在尝试构建一个 bash 完成例程,它将建议命令行标志和合适的标志值。例如在下面 fstcompose 命令我想比赛套路先建议 compose_filter= 标志,然后建议来自 [alt_seq
当我尝试在重定向符号后完成路径时,bash 完成的行为就好像它仍在尝试在重定向之前完成命令的参数一样。 例如: dpkg -l > /med标签 通过在 /med 之后点击 Tab我希望它完成通往 /
我的类中有几个 CAKeyframeAnimation 对象。 他们都以 self 为代表。 在我的animationDidStop函数中,我如何知道调用来自哪里? 是否有任何变量可以传递给 CAKe
我有一个带有 NSDateFormatter 的 NSTextField。格式化程序接受“mm/dd/yy”。 可以自动补全日期吗?因此,用户可以输入“mm”,格式化程序将完成当前月份和年份。 最佳答
有一个解决方案可以使用以下方法完成 NSTextField : - (NSArray *)control:(NSControl *)control textView:(NSTextView *)tex
我正在阅读 Passport 的文档,我注意到 serialize()和 deserialize() done()被调用而不被返回。 但是,当使用 passport.use() 设置新策略时在回调函数
在 ubuntu 11.10 上的 Firefox 8.0 中,尽管 img.complete 为 false,但仍会调用 onload 函数 draw。我设法用 setTimeout hack 解决
假设我有两个与两个并行执行的计算相对应的 future 。我如何等到第一个 future 准备好?理想情况下,我正在寻找类似于Python asyncio's wait且参数为return_when=
我正在寻找一种 Java 7 数据结构,其行为类似于 java.util.Queue,并且还具有“最终项目已被删除”的概念。 例如,应可以表达如下概念: while(!endingQueue.isFi
这是一个简单的问题。 if ($('.dataTablePageList')) { 我想做的是执行一个 if 语句,该语句表示如果具有 dataTablesPageList 类的对象也具有 menu
我用replaceWith批量替换了许多div中的html。替换后,我使用 jTruncate 来截断文本。然而它不起作用,因为在执行时,replaceWith 还没有完成。 我尝试了回调技巧 ( H
有没有办法调用 javascript 表单 submit() 函数或 JQuery $.submit() 函数并确保它完成提交过程?具体来说,在一个表单中,我试图在一个 IFrame 中提交一个表单。
我有以下方法: function animatePortfolio(fadeElement) { fadeElement.children('article').each(function(i
我刚刚开始使用 AndEngine, 我正在像这样移动 Sprite : if(pValueY < 0 && !jumping) { jumping =
我正在使用 asynctask 来执行冗长的操作,例如数据库读取。我想开始一个新 Activity 并在所有异步任务完成后呈现其内容。实现这一目标的最佳方法是什么? 我知道 onPostExecute
我有一个脚本需要命令名称和该命令的参数作为参数。 所以我想编写一个完成函数来完成命令的名称并完成该命令的参数。 所以我可以这样完成命令的名称 if [[ "$COMP_CWORD" == 1 ]];
我的应用程序有一个相当奇怪的行为。我在 BOOT_COMPLETE 之后启动我的应用程序,因此在我启动设备后它是可见的。 GUI 响应迅速,一切正常,直到我调用 finish(),按下按钮时,什么都没
我是一名优秀的程序员,十分优秀!