如何检查Node.js中是否定义了变量?

时间:2012-11-11 21:56:34

标签: javascript node.js

我正在研究node.js中的一个程序,实际上是js。

我有一个变量:

var query = azure.TableQuery...

看起来这行代码没有执行一段时间。

我的问题是:

我怎样才能做到这样的条件:

if this variable is defined do this.
else do this.

我不能用js (query!= null)

我想看看这个变量是否已定义做某事。怎么做

6 个答案:

答案 0 :(得分:80)

if ( typeof query !== 'undefined' && query )
{
  //do stuff if query is defined and not null
}
else
{

}

答案 1 :(得分:21)

确定属性是否存在(但不是假值):

if (typeof query !== 'undefined' && query !== null){
   doStuff();
}

通常使用

if (query){
   doStuff();
}

就足够了。请注意:

if (!query){
   doStuff();
}
即使查询是带有falsy值的现有变量(0,false,undefined或null),

doStuff()也会执行

不过,有一种性感的咖啡方式可以做到这一点:

if object?.property? then doStuff()

编译为:

if ((typeof object !== "undefined" && object !== null ? object.property : void 0) != null) 

{
  doStuff();
}

答案 2 :(得分:11)

对我来说,像

这样的表达
if (typeof query !== 'undefined' && query !== null){
   // do stuff
}

比我想要的频率要复杂得多。也就是说,测试变量是否定义为/ null是我经常做的事情。我希望这样的测试很简单。为了解决这个问题,我首先尝试将上面的代码定义为函数,但是节点只给我一个语法错误,告诉我函数调用的参数是未定义的。没有用!因此,搜索并研究这一点,我找到了一个解决方案。不是每个人都有。我的解决方案涉及使用Sweet.js来定义宏。我是这样做的:

这是宏(文件名:macro.sjs):

// I had to install sweet using:
// npm install --save-dev
// See: https://www.npmjs.com/package/sweetbuild
// Followed instructions from https://github.com/mozilla/sweet.js/wiki/node-loader

// Initially I just had "($x)" in the macro below. But this failed to match with 
// expressions such as "self.x. Adding the :expr qualifier cures things. See
// http://jlongster.com/Writing-Your-First-Sweet.js-Macro

macro isDefined {
  rule {
    ($x:expr)
  } => {
    (( typeof ($x) === 'undefined' || ($x) === null) ? false : true)
  }
}


// Seems the macros have to be exported
// https://github.com/mozilla/sweet.js/wiki/modules

export isDefined;

以下是宏的使用示例(在example.sjs中):

function Foobar() {
    var self = this;

    self.x = 10;

    console.log(isDefined(y)); // false
    console.log(isDefined(self.x)); // true
}

module.exports = Foobar;

这是主节点文件:

var sweet = require('sweet.js');

// load all exported macros in `macros.sjs`
sweet.loadMacro('./macro.sjs');

// example.sjs uses macros that have been defined and exported in `macros.sjs`
var Foobar = require('./example.sjs');

var x = new Foobar();

除此之外,除了必须安装Sweet之外,设置宏,并在代码中加载Sweet,是因为它可以使Node中的错误报告复杂化。它增加了第二层解析。还没有用过这么多,所以应该看看它是如何成为第一手的。我喜欢Sweet虽然我想念宏,所以会尽力坚持下去!

答案 3 :(得分:5)

如果您的变量未声明也未定义:

if ( typeof query !== 'undefined' ) { ... }

如果您的变量已声明但未定义。 (假设这里的情况是变量可能没有被定义,但它可以是任何其他的虚假值,如false""

if ( query ) { ... }

如果您的变量已声明,但可以是undefinednull

if ( query != null ) { ... } // undefined == null

答案 4 :(得分:1)

对于简单的任务,我经常这样做:

var undef;

// Fails on undefined variables
if (query !== undef) {
    // variable is defined
} else {
    // else do this
}

或者,如果您只是想检查一个无效的值..

var undef;

// Fails on undefined variables
// And even fails on null values
if (query != undef) {
    // variable is defined and not null
} else {
    // else do this
}

答案 5 :(得分:0)

听起来你正在对物体进行财产检查!如果你想检查属性是否存在(但除了truthy值之外可以是null或0之类的值), in 运算符可以产生一些很好的语法。

var foo = { bar: 1234, baz: null };
console.log("bar in foo:", "bar" in foo); // true
console.log("baz in foo:", "baz" in foo); // true
console.log("otherProp in foo:", "otherProp" in foo) // false
console.log("__proto__ in foo:", "__proto__" in foo) // true

如您所见, __ proto __ 属性将在此处抛出。对于所有继承的属性都是如此。为了进一步阅读,我建议使用MDN页面:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/in