3

假设我有一个重复的模板:

<template bind repeat id='my-template'>
    This is the bound value: <span id="#myid[x]"> {{}} </span>
</template>

我可以用什么替换 [x] 将是独一无二的?访问循环计数器可以解决问题,但我愿意接受建议。

4

1 回答 1

5

我正在向 Fancy Syntax(Polymer.dart 现在的默认绑定语法)添加一些实用程序来帮助解决这个问题,但基本大纲是通过一个过滤器运行你的集合,该过滤器将添加索引并返回一个新的 Iterable。

这里有一些代码现在可以做到:

import 'package:fancy_syntax/fancy_syntax.dart';
import 'package:mdv/mdv.dart';

Iterable<IndexedValue> enumerate(Iterable iterable) {
  int i = 0;
  return iterable.map((e) => new IndexedValue(i++, e));
}

class IndexedValue<V> {
  final int index;
  final V value;

  IndexedValue(this.index, this.value);
}

main() {
  query('#my-template')
    ..bindingDelegate = new FancySyntax(globals: {
      'enumerate': enumerate,
    })
    ..model = ['A', 'B', 'C'];
}
<template bind id='my-template'>
  <template repeat="{{ item in this | enumerate }}">
    This is the bound value: <span id="#myid-{{ item.index }}">{{ item.value }}</span>
  </template>
</template>

我正在尝试将一堆实用程序(例如 Python 的 itertools)放入一个库中以供此类用途。我会在它们可用时更新。

于 2013-08-10T20:17:06.247 回答