0

我有这种格式的数据

"numbers":[
        {
            "callFlow":{
                "type":"RING-ONE"
            },
            "number":"111111111"
        }
 ]

我的 html 看起来像这样

{{#each numbers}}
{{number}}
{{callFlow.type}}
{{/each}}

预期输出是

111111111
RING-ONE

但我得到输出为

111111111
4

1 回答 1

0

这就是您要查找的内容:

{{#each numbers}}
 {{this.number}}
 {{this.callFlow.type}}
{{/each}}
于 2020-05-11T11:43:58.420 回答