有没有办法为纸张输入动态设置字符计数器最大长度
is there any way to set char-counter maxlength dynamically for paper-input
我想为不同的数据设置不同的maxlength,我尝试在maxlength中写了一个方法但是没有成功,请问还有没有其他的可能
<paper-input label="{{data.name}}" id="input" char-counter maxlength="getMaxLength()"></paper-input>
使用 属性 并将最大长度设置为 属性:
<paper-input label="{{data.name}}" id="input" char-counter maxlength="[[maxValue]]"></paper-input>
使用方法和return方法的值:
<paper-input label="{{data.name}}" id="input" char-counter maxlength="[[getMaxLength()]]"></paper-input>
我想为不同的数据设置不同的maxlength,我尝试在maxlength中写了一个方法但是没有成功,请问还有没有其他的可能
<paper-input label="{{data.name}}" id="input" char-counter maxlength="getMaxLength()"></paper-input>
使用 属性 并将最大长度设置为 属性:
<paper-input label="{{data.name}}" id="input" char-counter maxlength="[[maxValue]]"></paper-input>
使用方法和return方法的值:
<paper-input label="{{data.name}}" id="input" char-counter maxlength="[[getMaxLength()]]"></paper-input>