Reputation: 2967
How can i access an array key with a space?
Standard way,
{{MyArray.name}}
Key with space,
{{MyArray.first name}} or {{MyArray['first name']}}
doesn't work.
Upvotes: 10
Views: 5435
Reputation: 1479
Use brackets in conjunction with dots, without quotes:
{{MyArray.[first name]}}
Upvotes: 13