Aurelia开始浏览器错误

时间:2015-04-26 13:58:50

标签: javascript aurelia

我正在尝试http://aurelia.io/get-started.html项目,安装完所有内容后,我在Chrome控制台中收到以下错误:

enter image description here 这是Firefox中的错误

enter image description here

1 个答案:

答案 0 :(得分:0)

知道了!

我在标记中键入了值。 bond 而不是value。 bind

app.html:

<template>
  <section>
    <h2>${heading}</h2>

    <form role="form" submit.delegate="welcome()">
      <div class="form-group">
        <label for="fn">First Name</label>
        <input type="text" value.bond="firstName" class="form-control" id="fn" placeholder="first name">
      </div>
      <div class="form-group">
        <label for="ln">Last Name</label>
        <input type="text" value.bond="lastName" class="form-control" id="ln" placeholder="last name">
      </div>
      <div class="form-group">
        <label>Full Name</label>
        <p class="help-block">${fullName}</p>
      </div>
      <button type="submit" class="btn btn-default">Submit</button>
    </form>
  </section>
</template>