是否有任何方法可以为纸张输入动态设置char-counter maxlength

时间:2017-11-15 09:03:44

标签: polymer polymer-2.0

我想为不同的数据设置不同的maxlength,我尝试在maxlength中编写一个方法,但它没有用,所以还有其他可能吗

<paper-input label="{{data.name}}" id="input" char-counter maxlength="getMaxLength()"></paper-input>

1 个答案:

答案 0 :(得分:2)

使用属性并将max length设置为property:

   <paper-input label="{{data.name}}" id="input" char-counter maxlength="[[maxValue]]"></paper-input>

使用方法并从方法返回值:

   <paper-input label="{{data.name}}" id="input" char-counter maxlength="[[getMaxLength()]]"></paper-input>