gpt4 book ai didi

polymer - Polymer 1.0 中自动绑定(bind)模板中的计算绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 14:57:25 25 4
gpt4 key购买 nike

如何在自动绑定(bind)模板(即声明为 <template is='dom-bind'>...</template> 的模板)中定义计算绑定(bind)?

最佳答案

只需通过脚本将计算绑定(bind)直接分配给模板元素,确保在定义计算绑定(bind)之后初始化所涉及的属性。

例子:

<template is="dom-bind">
<div>
<input value="{{text::input}}">
</div>
<div>[[describe(text)]]</div>
</template>

<script>
(function() {
var template = document.querySelector('template[is="dom-bind"]');

template.describe = function(text) {
if (text) {
return 'You entered "' + text + '", which is ' + text.length + ' characters long.';
} else {
return 'You didn\'t even enter a thing! Shame on you.';
}
};

template.text = '';
})();
</script>

关于polymer - Polymer 1.0 中自动绑定(bind)模板中的计算绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30809563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com