0
我試圖對我的聚合物應用程序進行動態驗證 當輸入爲空時,我想使#login-button
按鈕屬性爲disabled
,並在輸入填充id和密碼時刪除此屬性。 我試過做html5 required
屬性,但這個解決方案不起作用。 現在我創建了button-click
函數來打我的Api,我想添加驗證功能。驗證數據觀察中的聚合物輸入
<form id="form_login">
<paper-input aria-required="true" name="name" floatingLabel label="Id*"
value="{{name}}"></paper-input>
<br>
<paper-input-decorator floatingLabel label="password">
<input aria-required="true" id="password" is="core-input" name="password" type="password"
value="{{password}}"/>
</paper-input-decorator>
<br>
<div class="page-holder" horizontal layout center center-justified>
</div>
<div class="page-holder" horizontal layout center center-justified>
<paper-button id="login-button" on-click="{{buttonClick}}">Zaloguj Się</paper-button>
</div>
</form>
我的腳本:
Polymer('login-page',{
buttonClick: function() {
this.$.ajaxSubmit.go();
},
responseChanged: function (oldValue) {
console.log(this.response);
document.querySelector('app-router').go('/profile?hash=dfsasdsf');
}
});
</script>
作品般的魅力,謝謝! –