用Aurelia动态组合视图

时间:2017-12-05 16:17:36

标签: javascript webpack aurelia

我正在尝试动态撰写视图,但在运行时我收到错误Error: Unable to find module with ID: app/components/customers/customer-type-view-converter.html.我正在使用webpack。

这是我正在使用的视图转换器

 import {PLATFORM} from 'aurelia-framework';

export class CustomerTypeViewConverter {
    toView(type: string) {
     return  type  == 'LEGAL' ? PLATFORM.moduleName("createLEGALcustomer.html") : PLATFORM.moduleName("createNATURALcustomer.html")
    }
  }

这是调用转换器的模板

<template>

    <require from="./customer-type-view-converter"></require>
    <ux-dialog style="min-width:500px">

        <ux-dialog-header>
            <h1>Create Customer</h1>
        </ux-dialog-header>

        <ux-dialog-body>
            <form class="form-horizontal">

                <div class="form-group">

                    <label for="name" class="col-sm-4 control-label">Customer Type:</label>
                    <div class="col-sm-8">
                        <select value.bind="customer.customerType">
                            <option value="NATURAL">Person</option>
                            <option value="LEGAL">Company or Organisation</option>
                        </select>

                    </div>

                </div>

                <compose view.bind="customer.customerType | customerTypeView"></compose>

            </form>

        </ux-dialog-body>

        <ux-dialog-footer>
            <button click.trigger="controller.cancel()">Cancel</button>
            <button click.trigger="submit()">Ok</button>
        </ux-dialog-footer>

    </ux-dialog>

</template>

1 个答案:

答案 0 :(得分:0)

这里有两个问题。首先。类名应该是CustomerTypeView Value 转换器,以便Aurelia将其重新分类为不需要视图的特殊类。

在Value转换器本身中,html文件应该以{{1​​}}为前缀,以便webpack可以找到它们

更新下面的值转换器

./