1

你好。我的 JSON 是:

variants : [
  {
    name : "one",
    segments : [
      { value : 1 },
      { value : 2 },
      { value : 3 }
    ]
  },
  {
    name : "two",
    segments : [
      { value : 4 },
      { value : 5 },
      { value : 6 }
    ]
  }
]

{{#each variants}}
  Index: {{@index}} 
  Value: {{segments.[@index].value}}
{{/each}}

我期望值输出为 1 和 5。Index 不为空,但 Value 为空。为什么?

4

1 回答 1

1
{{#each variants}}
  Index: {{@index}}
  {{#with (lookup segments @index}}
    {{value}}
  {{/with}}
{{/each}}
于 2016-10-31T14:09:19.707 回答