suppose I have the following objects:
image: {
size: {
l: {
url: 'l.jpg',
},
m: {
url: 'm.jpg',
},
s; {
url: 's.jpg',
}
}
},
mySize: 'm'
If I want to get corresponding image url in my template, how should I do that? I tried:
{{get image mySize 'url'}}
but it does not work.
I can get the url I want by typing like this:
{{get (get image mySize) 'url')}}
However this is a very unintuitive and ugly workaround. Is there any a better way? Thank you.