0
동적으로보기를 작성하려고하는데 런타임시 오류가 발생합니다 Error: Unable to find module with ID: app/components/customers/customer-type-view-converter.html.
webpack을 사용하고 있습니다.Aurelia로보기를 동적으로 작성하기
여기 여기 여기 변환기를
<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>
당신이'고객 - 당신이 가지고있는 코드를 추가시겠습니까 아래에 업데이트 된 값 계산기 type-view-converter.js', 제발? –
은 이미 거기에 있었지만 명확하게하기 위해 더 적절하게 형식이 지정되었습니다. – MrBliz