Curly braces inside JavaScript parameters for functions

别说谁变了你拦得住时间么 提交于 2019-11-26 12:11:27

问题


What do the curly braces surrounding JavaScript parameters for functions do?

var port = chrome.extension.connect({name: \"testing\"});
port.postMessage({found: (count != undefined)});

回答1:


The curly braces denote an object literal. It is a way of sending key/value pairs of data.

So this:

var obj = {name: "testing"};

Is used like this to access the data.

obj.name; // gives you "testing"

You can give the object several comma separated key/value pairs, as long as the keys are unique.

var obj = {name: "testing",
           another: "some other value",
           "a-key": "needed quotes because of the hyphen"
          };

You can also use square brackets to access the properties of the object.

This would be required in the case of the "a-key".

obj["a-key"] // gives you "needed quotes because of the hyphen"

Using the square brackets, you can access a value using a property name stored in a variable.

var some_variable = "name";

obj[ some_variable ] // gives you "testing"



回答2:


A second possible answer has arisen since this question was asked. Javascript ES6 introduced Destructuring Assignment.

var x = function({ foo }) {
   console.log(foo)
}

var y = {
  bar: "hello",
  foo: "Good bye"
}

x(y)


Result: "Good bye"



回答3:


Curly braces in javascript are used as shorthand to create objects. For example:

// Create an object with a key "name" initialized to the value "testing"
var test = { name : "testing" };
alert(test.name); // alerts "testing"

Check out Douglas Crockford's JavaScript Survey for more detail.




回答4:


var x = {title: 'the title'};

defines an object literal that has properties on it. you can do

x.title 

which will evaluate to 'the title;

this is a common technique for passing configurations to methods, which is what is going on here.



来源:https://stackoverflow.com/questions/4146984/curly-braces-inside-javascript-parameters-for-functions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!