如何停止在 Node.js 中出现此 ReferenceError?

发布于 2024-11-19 18:01:54 字数 342 浏览 3 评论 0原文

    183|             });
    184| 
 >> 185|             <% if(just_registered) { %>
    186|                 alert("Welcome!");
    187|             <% } %>
    188| 

just_registered is not defined

基本上,我想说:如果 just_registered 已定义并且为 true,则发出警报。但是,我想将所有内容设置为 false...我只想将其保留为未定义(我有大约 100 个变量)

    183|             });
    184| 
 >> 185|             <% if(just_registered) { %>
    186|                 alert("Welcome!");
    187|             <% } %>
    188| 

just_registered is not defined

Basically, I want to say: if just_registered is defined and is true, then alert. However, I want want to set everything to false...I just want to leave it undefined (i have like 100 variables)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

垂暮老矣 2024-11-26 18:01:54

<% if(typeof just_registered !== "undefined") { %>

基本上是检查局部变量是否存在。为此,您必须使用 typeof 运算符,因为访问未声明的局部变量 just_registered 会产生引用错误。

Will相比,这是最好的,

var foo;
if (foo) { }

与vsWhere

//var foo;
if (foo) { } // ReferenceError

as

//var foo
if (typeof foo !== "undefined") { } 

因为使用 typeof 运算符访问未声明的变量只会返回 "undefined" 而不是抛出 ReferenceError

<% if(typeof just_registered !== "undefined") { %>

Basically your checking whether a local variable exists. To do this you have to use the typeof operator since accessing just_registered which is an undeclared local variable creates a reference error.

This is best compared to

var foo;
if (foo) { }

vs

//var foo;
if (foo) { } // ReferenceError

Where as

//var foo
if (typeof foo !== "undefined") { } 

Will work because accessing an undeclared variable with the typeof operator just returns "undefined" rather then throwing a ReferenceError

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