在 Windows 上的 Node.js 上使用 Promise
如何在 Windows 上运行的 Node.js 上使用 Promise?在我的一生中,我似乎无法找到任何可以工作的例子...
例如,这样的东西不起作用:
var pinput = new Promise(
function(fulfillPromise, breakPromise) {
var btn = document.getElementById("button");
var txt = document.getElementById("txt");
btn.onclick = function() {
fulfillPromise(txt.value);
}
}
);
pinput.whenOnly(function(value) { alert(value); });
抛出 require 也无济于事:
Promise = require('promise');
我得到的只是:
ReferenceError: promise is not defined
或
Error: Cannot find module 'Promise'
我不能似乎从最新的 API 中找到了承诺... (http://nodejs.org/docs/latest/api/)
我很困惑。
How does one use promises on Node.js running on Windows? For the life of me I can't seem to get any example to work...
For example something like this doesn't work:
var pinput = new Promise(
function(fulfillPromise, breakPromise) {
var btn = document.getElementById("button");
var txt = document.getElementById("txt");
btn.onclick = function() {
fulfillPromise(txt.value);
}
}
);
pinput.whenOnly(function(value) { alert(value); });
Throwing in requires doesn't help either:
Promise = require('promise');
All I get is either:
ReferenceError: promise is not defined
or
Error: Cannot find module 'Promise'
And I can't seem to find the promise from the latest API either... (http://nodejs.org/docs/latest/api/)
Me be puzzled.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信承诺已被删除。 请参阅此 Google 网上论坛帖子了解详情。
I believe promises were removed. See this Google Groups post for more information.