如何使用aurelia-form插件的表单字段

时间:2017-01-29 13:33:49

标签: javascript aurelia aurelia-form

我正在玩表格

https://aurelia-form.spoonx.org/components.html

我无法弄清楚如何使用下面的代码显示单个元素 我的主要问题是'元素'来自何处?

  <form-field
    value.bind="model.name"
    element.bind="nameElement">
  </form-field>

我试过这样的事情,但我看不出如何抓住'元素'

  <form-field
    value.bind="userAccounts.values['name']"
    element.bind="element">
  </form-field>

1 个答案:

答案 0 :(得分:3)

表单字段,对于您只想渲染一个字段的情况。元素是描述字段的对象,例如:

let element = {
  key: 'name',

  /* can be excluded as it defaults to string */
  type: 'string',
  attributes: {
    /* do not allow user to change the name of the pizza */
    readonly: true,
  }
};

您可以在此处查看更多示例:https://aurelia-form.spoonx.org/types.html