Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to create something as following:

var collectoin= 
[
  'title1' => {'subtitle:'sub1', 'contents':'sub content 1' },
  'title2' => {'subtitle:'sub2', 'contents':'sub content 2' },
  'title3' => {'subtitle:'sub3', 'contents':'sub content 3' }
]

but I feel like it's not valid. I am not sure what's the best structure for my case.

thanks for the help

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
744 views
Welcome To Ask or Share your Answers For Others

1 Answer

Notice that the object presented by @juvian does not have a defined ordering of the keys (in contrast to PHP associative arrays, for example). I guess you want an ordered collection, for which you have to use an array:

var collection = [
    {'title': '1', 'subtitle':'sub1', 'contents':'sub content 1'},
    {'title': '2', 'subtitle':'sub2', 'contents':'sub content 2'},
    {'title': '3', 'subtitle':'sub3', 'contents':'sub content 3'}
];

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...