the data is like this
{
"id" : 1,
"name" : "testName",
"info" : {
"face" : "xxxxxxx,jpg"
"mobile" : "xxxxxx"
}
}
in the template
{{user.info.mobile}} //undefined
can only be written as
{{user.info ? user.info.face: ""}}
{{user.info ? user.info.mobile : ""}} //
it"s troublesome to write like this. Is there any other way?