如何在nodejs中显示弹出框?

时间:2018-01-27 17:29:22

标签: node.js popup

我正在尝试使用'popups'模块。但它抛出以下错误。

   appendLocation: (document.body || document.documentElement),
                     ^

   ReferenceError: document is not defined

1 个答案:

答案 0 :(得分:0)

由于NodeJS在服务器端运行并且您在服务器端没有 document 对象,因此该方法不起作用。您不能直接执行此操作,您必须将响应发送到某种客户端,然后使用弹出窗口包。