看起来你快到了。只需进行一些调整,这应该可以工作。在 Aurelia 中添加动态组合视图所需的步骤如下:
创建动态视图
创建 HTML 模板。在这种情况下,您需要创建test.html
模板,如下面的代码片段所示。
测试.html
<template>
<div>Hi I'm a test message</div>
</template>
将视图组合到您的父组件中
创建视图后,您需要使用<compose>
Aurelia 框架提供的自定义元素将其组合到父组件中。在您的情况下,您需要对<welcome>
视图模板进行以下更改:
<template>
<section class="au-animate">
<h2>${heading}</h2>
<form role="form" submit.delegate="submit()">
<div class="form-group">
<label for="fn">First Name</label>
<input type="text" value.bind="firstName" class="form-control"
id="fn" placeholder="first name">
</div>
<div class="form-group">
<label for="ln">Last Name</label>
<input type="text" value.bind="lastName" class="form-control" id="ln" placeholder="last name">
</div>
<div class="form-group">
<label>Full Name</label>
<p class="help-block">${fullName | upper}</p>
</div>
<compose view="./test.html"></compose>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</section>
</template>
完成此操作后,您的视图应包含仅在 HTML 中组成的新自定义元素,如此屏幕截图所示。