JavaScript 属性访问 : dot notation vs. 括号?

标签 javascript syntax object-literal

除了第一种形式可以使用变量而不仅仅是字符串文字这一显而易见的事实之外,是否有任何理由使用一个而不是另一个,如果是这样,在哪些情况下?

在代码中:

// Given:
var foo = {'bar': 'baz'};

// Then
var x = foo['bar'];

// vs. 
var x = foo.bar;

上下文:我编写了一个生成这些表达式的代码生成器,我想知道哪个更可取。

最佳答案

(来自 here。)

方括号表示法允许使用不能与点表示法一起使用的字符:

var foo = myForm.foo[]; // incorrect syntax
var foo = myForm["foo[]"]; // correct syntax


包括非 ASCII (UTF-8) 字符,如 myForm["ダ"] ( more examples )。

其次,方括号表示法在处理时很有用
以可预测的方式变化的属性名称:


for (var i = 0; i < 10; i++) {
  someFunction(myForm["myControlNumber" + i]);
}


综述:

  • Dot notation is faster to write and clearer to read.
  • Square bracket notation allows access to properties containing special characters and selection of properties using variables


不能与点表示法一起使用的字符的另一个示例是本身包含点的属性名称。

例如,一个 json 响应可能包含一个名为 bar.Baz 的属性。 .
var foo = myResponse.bar.Baz; // incorrect syntax
var foo = myResponse["bar.Baz"]; // correct syntax

关于JavaScript 属性访问 : dot notation vs. 括号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64283685/

相关文章:

Javascript:对象文字表示法中的indexOf

javascript - 附加到一个不是数组的 JS 对象?

javascript - 在 AngularJS ng-repeat 中处理 json 数据

javascript - Angular 5父子动画不能同时工作

c# - JavaScript 数组与 C# 数组

Javascript Promise 单函数回调

php - php 中是否有三元运算符的反向版本?

powershell - Powershell,WMI方法

Python 测试 url 和图像类型

javascript - 如何将 JS 对象文字名称值对传递给另一个函数