2
我測試了使用iron-form
自定義元素。我遇到的問題是當我按下回車鍵時表單沒有被提交。例如這種形式在這裏工作在輸入:鐵形式不提交輸入紙張輸入
<iron-form>
<form id="loginForm">
<paper-card heading="Welcome Back!" elevation="1" animated-shadow="true">
<div class="card-content">
<input type="text" label="Username" value="{{username}}">
<input type="text" label="Password" value="{{password}}">
</div>
<div class="card-actions">
<button disabled$="[[fetching]]" type="submit">Login</button>
</div>
</paper-card>
</form>
</iron-form>
我有一個事件監聽器在我connectedCallback方法監聽iron-form-presubmit event
connectedCallback() {
super.connectedCallback();
this.addEventListener('iron-form-presubmit', function(event) {
event.preventDefault();
alert('working')
});
}
的問題是,當我切換HTML輸入元素紙 - 輸入元素表單不再提交輸入。
<iron-form>
<form id="loginForm">
<paper-card heading="Welcome Back!" elevation="1" animated-shadow="true">
<div class="card-content">
<paper-input type="text" label="Username" value="{{username}}"></paper-input>
<paper-input type="text" label="Password" value="{{password}}"></paper-input>
</div>
<div class="card-actions">
<button disabled$="[[fetching]]" type="submit">Login</button>
</div>
</paper-card>
</form>
</iron-form>
這是推薦的方法或者是有鐵的形式某些類型的錯誤? – Rodrigo
我不知道對不起。如果這是一個錯誤,那麼它就是在紙張輸入中不會將[enter]事件傳送到它的容器。 – Supersharp
idk如果它是一個「bug」或只是一個「限制」。可能是後者(https://github.com/PolymerElements/iron-form/issues/189) – mvhatch