English 中文(简体)
Is this Javascript object literal key restriction strictly due to parsing?
原标题:

Please refer to the code below, when I "comment in" either of the commented out lines, it causes the error (in IE) of " : expected". So then is my conclusion correct, that this inability to provide a reference to an object value, as an object key in a string literal; is this strictly an interpreter/parsing issue? Is this a candidate for an awful (or at least "bad") "part" of Javascript, in contrast to Crockford s "good parts"?

<script>
var keys = { ONE :  one };

//causes error:
//var obj1 = {keys.ONE:  value1 };
//var obj1 = {keys[ ONE ]:  value1 };

//works
var obj1 = {};
obj1[keys.ONE] =  value1 ;

//also works
var key_one = keys.ONE;
var obj2 = {key_one:  value1 };
</script>
最佳回答

The limitation of the literal object syntax is that the names has to be literal. As the names can be specified as an identifer as well as a string, it s not possible to use a variable instead.

This will create an object with a property n, not a property answer:

var n =  answer ;
var o = { n: 42 };
问题回答

You cannot use variables as keys when defining object with {}

Therefore they are being interpreted as string names and can consist only of characters avaliable for variable names

the

objectname[anythingThatReturnsValue]= value1 ; is the way to go.

ALSO

You can generate a string and parse it

var s= {" +keys.ONE+ ": "value1"} ;
var obj=JSON.parse(s);
//or
s= var obj2= +s;
eval(s);

Both above methods are bad practices for creating objects in JavaScript and I don t recommend them.

Think about it: if it were to work the way you want it would totally introduce a language ambiguity.

var obj = {something:"red"}
var obj = {"something":"red"}

The two statements are equivalent in JavaScript, because bareword keys are "autoquoted." So if something means the literal string "something", how it could also refer to the variable "something". It can t. So if you want to use variables they have to go in square bracket notation instead of key : value notation.

You can try:

var obj = {};
var val =  foo ;

obj[val] =  bar ; 

obj.foo >>>  bar ;




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签