作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 Meteor 客户端代码中,我尝试使用只有异步调用的第三方 API。如何在客户端上使用 Meteor.wrapAsync 以同步方式调用此 API?文档似乎表明这是可能的:http://docs.meteor.com/#/full/meteor_wrapasync
这是我想以同步方式调用的一些示例代码:
var func1 = function(callback) {
Meteor.setTimeout(function() {
console.log('func1 executing');
callback(null, {success: true});
}, 2000);
};
var func2 = function(callback) {
Meteor.setTimeout(function() {
console.log('func2 executing');
callback(null, {success: true});
}, 1000);
};
var wrapped1 = Meteor.wrapAsync(func1);
var wrapped2 = Meteor.wrapAsync(func2);
Template.test.rendered = function() {
wrapped1();
console.log('After wrapped1()');
wrapped2();
console.log('After wrapped2()');
};
After wrapped1()
After wrapped2()
func2 executing
func1 executing
func1 executing
After wrapped1()
func2 executing
After wrapped2()
最佳答案
Meteor.wrapAsync
为了同构代码在客户端上工作。这样您就可以编写可以在客户端和服务器上共享的代码,而不会导致 Meteor 崩溃或提示。
客户端上不可能有同步代码。至少不使用并非在所有浏览器上都可用的 ES6 功能。
正如 saeimeunt 的评论一样 Meteor.wrapAsync 将需要在客户端上进行回调。
关于meteor - 如何在客户端使用 Meteor.wrapAsync?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29478707/
我是一名优秀的程序员,十分优秀!