2016-03-30 10 views

答えて

5

上記のコードは機能するはずです。ここで実行されている例を示しますhttps://gist.run?id=5df404d80be769a0d62aab2f7c9f300e

app.html

<template> 
    <require from="./test-converter"></require> 

    <div repeat.for="y of 3"> 
    <span repeat.for="x of 3">${ x * y | test : $index : $parent.$index }</span> 
    </div> 
</template> 

app.js

export class App { 
    message = 'Hello World!'; 
} 

テストconverter.js

export class TestValueConverter { 
    toView(value, x, y) { 
    return `(${x},${y},${value})`; 
    } 
} 
+0

いいえ、それは私が欲しいものではありません!私はフィルタのようなコンバータを使用したい。私があなたの例をとった場合、yが2のときに値を表示したくありません。したがって、フィルターは 'x of 3'に適用されます – Seb

関連する問題