Aurelia定制元素为模态形式

时间:2016-11-09 15:39:49

标签: aurelia aurelia-binding

Simplified GistRun:https://gist.run/?id=e87e5664097f20a2950c4d0aa5bf1977

我试图在Aurelia中创建一个自定义元素来构建一个模态表单容器,如下所示。但是,页面未加载。如果我删除所有$ {}标记,则会加载。为什么自定义元素的绑定无法正常工作?似乎问题出现在ref=${name_ref}if.bind="${record_id}"和类似的绑定中。我能够将所有绑定值的值显示为页面内容。

此外,即使我对自定义元素(ref="edit_division")的引用进行了硬编码,我仍然无法从我的父JavaScript中引用它。我应该可以使用$(this.edit_division).modal();打开模态,但它没有链接参考。

最后,click.delegate="closeModal()"未找到父JavaScript中的函数。

模态-form.html

<template>

  <!-- Modal edit window -->
  <div class="modal fade" ref="${name_ref}" tabindex="-1" role="dialog" aria-labelledby="Edit Division">
    <div class="modal-dialog" role="document">
      <div class="modal-content">
        <div class="modal-header modal-header-success">
          <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
          <h4 class="modal-title"><span if.bind="${record_id}" t="${label_edit}"></span><span if.bind="!${record_id}" t="${label_new}"></span></h4>
        </div>
        <div class="modal-body">
        <div class="alert alert-danger" if.bind="error">${error&t}</div>

        <slot><!-- Custom element inner content will be inserted here --></slot>

        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-danger pull-left" click.delegate="deleteRecord()" if.bind="${record_id}" tabindex=99><span t="Delete"></span></button>
          <button type="button" class="btn btn-secondary" click.delegate="closeModal()"><span t="Cancel"></span></button>
          <button type="button" class="btn btn-primary" click.delegate="saveRecord()"><span t="Save"></span></button>
        </div>
      </div>
    </div>
  </div>

</template>

模态-form.js

import { bindable } from 'aurelia-framework';

export class ModalFormCustomElement {

  @bindable name_ref;
  @bindable record_id;
  @bindable label_new;
  @bindable label_edit;
  @bindable error;

}

实施

<modal-form name_ref="edit_division" record_id="division.div_id" label_new="New_Division" label_edit="Edit_Division">

  <form>
    <div class="form-group">
      <label class="control-label" for="div_code"><span t="Division_code"></span></label>
      <input type="text" class="form-control" ref="div_code" value.bind="division.div_code & validate" />
    </div>
    <div class="form-group">
      <label class="control-label" for="div_name"><span t="Division_name"></span></label>
      <input type="text" class="form-control" value.bind="division.div_name & validate">
    </div>
    <div class="form-group">
      <label class="control-label" for="div_principal_p_id"><span t="Principal"></span></label>
      <input type="text" class="form-control" value.bind="division.div_principal_p_id">
    </div>
  </form>

</modal-form>

2 个答案:

答案 0 :(得分:1)

这是答案的一部分。您不需要在绑定中进行字符串插值。例如,ref="${name_ref}"应该是ref="name_ref",如此:

<div class="modal fade" ref="name_ref" tabindex="-1" role="dialog" aria-labelledby="Edit Division">

答案 1 :(得分:1)

如果以后有人正在查看这个问题,我通过自定义元素更新了GistRun工作模式对话框。希望将来对其他人有所帮助!