iron-form

Custom form element

  • 所有者: PolymerElements/iron-form
  • 平台:
  • 許可證:
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Published on NPM
Build status
Published on webcomponents.org

<iron-form>

<iron-form> is a wrapper around the HTML <form> element, that can
validate and submit both custom and native HTML elements.

It has two modes: if allow-redirect is true, then after the form submission you
will be redirected to the server response. Otherwise, if it is false, it will
use an iron-ajax element to submit the form contents to the server.

See: Documentation,
Demo.

Usage

Installation

npm install --save @polymer/iron-form

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-form/iron-form.js';
      import '@polymer/paper-checkbox/paper-checkbox.js';
    </script>
  </head>
  <body>
    <iron-form>
      <form method="get" action="/form/handler">
        <input type="text" name="name" value="Batman">
        <input type="checkbox" name="donuts" checked> I like donuts<br>
        <paper-checkbox name="cheese" value="yes" checked></paper-checkbox>
      </form>
    </iron-form>
  </body>
</html>

By default, a native <button> element (or input type="submit") will submit this form.
However, if you want to submit it from a custom element's click handler, you need to explicitly
call the iron-form's submit method:

  <paper-button raised onclick="submitForm()">Submit</paper-button>

  function submitForm() {
    document.getElementById('iron-form').submit();
  }

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-form/iron-form.js';
import '@polymer/paper-checkbox/paper-checkbox.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
    <iron-form>
      <form method="get" action="/form/handler">
        <input type="text" name="name" value="Batman">
        <input type="checkbox" name="donuts" checked> I like donuts<br>
        <paper-checkbox name="cheese" value="yes" checked></paper-checkbox>
      </form>
    </iron-form>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are
the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-form
cd iron-form
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm

主要指標

概覽
名稱與所有者PolymerElements/iron-form
主編程語言HTML
編程語言HTML (語言數: 2)
平台
許可證
所有者活动
創建於2015-05-13 01:01:02
推送於2023-10-16 14:02:54
最后一次提交2019-11-06 16:04:49
發布數46
最新版本名稱v3.0.1 (發布於 2018-09-13 19:53:43)
第一版名稱v0.9.0 (發布於 )
用户参与
星數64
關注者數20
派生數77
提交數397
已啟用問題?
問題數161
打開的問題數36
拉請求數101
打開的拉請求數9
關閉的拉請求數34
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?