将属性作为函数传递给 Polymer 中的自定义元素
Passing attribute to custom element in Polymer as a function
我正在尝试在 Polymer 中做一些非常简单的事情。我正在尝试使用函数传递属性。
<dom-module id="my-fixtures">
<template>
<fixtures-list fromdate="[[_requiredDay(24)]]"></fixtures-list>
</template>
<script>
Polymer({
is : 'my-fixtures',
properties: {
fromdate: String
},
_requiredDay: function (offset) {
// 1 day before now
var d = new Date(new Date().getTime() - parseInt(offset) * 60 * 60 * 1000);
var n = d.toJSON();
return n;
}
});
</script>
</dom-module>
但它不起作用。如果我更改静态 srting 值的函数,它就可以工作。有帮助吗?
谢谢
fromdate
属性 应该在 fixtures-list
而不是 my-fixtures
我正在尝试在 Polymer 中做一些非常简单的事情。我正在尝试使用函数传递属性。
<dom-module id="my-fixtures">
<template>
<fixtures-list fromdate="[[_requiredDay(24)]]"></fixtures-list>
</template>
<script>
Polymer({
is : 'my-fixtures',
properties: {
fromdate: String
},
_requiredDay: function (offset) {
// 1 day before now
var d = new Date(new Date().getTime() - parseInt(offset) * 60 * 60 * 1000);
var n = d.toJSON();
return n;
}
});
</script>
</dom-module>
但它不起作用。如果我更改静态 srting 值的函数,它就可以工作。有帮助吗?
谢谢
fromdate
属性 应该在 fixtures-list
而不是 my-fixtures