最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

json - Accessing attribute name containing slash in javascript object - Stack Overflow

programmeradmin1浏览0评论

Hi I'm trying to access an js object property which has an slash "/" in its name.

The object its somthing like:

{
   my/key : "my value"
   // more stuff here...
}

I try the following construction:

myObject["my/key"]

If I try to it in Chrome DevTools it works correctly but when I execute my code i get a beautiful undefined on browser console (using console.log())

has anybody any idea of what's happening? :S

Hi I'm trying to access an js object property which has an slash "/" in its name.

The object its somthing like:

{
   my/key : "my value"
   // more stuff here...
}

I try the following construction:

myObject["my/key"]

If I try to it in Chrome DevTools it works correctly but when I execute my code i get a beautiful undefined on browser console (using console.log())

has anybody any idea of what's happening? :S

Share Improve this question asked Aug 22, 2013 at 12:04 SergiGPSergiGP 7019 silver badges18 bronze badges 3
  • Try using backslash before slash, this could help. – Jan.J Commented Aug 22, 2013 at 12:09
  • 1 / is not an illegal character - see stackoverflow./questions/1661197/… for a prehensive description of what is valid. – knolleary Commented Aug 22, 2013 at 12:09
  • 2 Pretty much anything can go into property name (including newlines for example a = {}; a["\n"] = 'foo'; works) as long as you enclose it in quotes and use array access operator. JS objects are key-value maps essentially, and keys can be anything. – Mchl Commented Aug 22, 2013 at 12:20
Add a ment  | 

2 Answers 2

Reset to default 8

When you enclose the prop name into quotes, it works also in the code:

var obj = {
    'my/key' : 'my value'
};

You can check this at jsFiddle.

I tried your code in Node.js and it is working as expected, as long as the property name is quoted.

Try outputting the exact value of the key ("my/key") that you use to access the value - maybe, you are using a different key there.

发布评论

评论列表(0)

  1. 暂无评论