在 Windows 上的 Node.js 上使用 Promise

发布于 2024-12-16 18:51:43 字数 737 浏览 2 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

腹黑女流氓 2024-12-23 18:51:43

我相信承诺已被删除。 请参阅此 Google 网上论坛帖子了解详情。

I believe promises were removed. See this Google Groups post for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文