gpt4 book ai didi

Aurelia - 撰写 View

转载 作者:行者123 更新时间:2023-12-04 02:17:33 26 4
gpt4 key购买 nike

我对这个框架完全陌生。浏览所有文档后,我已经使用 visual studio 和类型脚本成功配置了 Aurelia 框架。我想知道如何在另一个 View 中组合一个 View ,并从其父 View 初始化其 View 模型。

例如:在导航框架中,我们有一个欢迎 View ,显示名字和第二个名字以及提交按钮。现在我在其中创建了一个名为 MyApp 的路由,我想编写欢迎 View ,我想将名字和名字传递给它的 View 模型。

请告诉我该怎么做?这是我的 Html MyApp 的样子:

<template>
<import from='welcome'></import>
<section class="au-animate">
<compose view-model="welcome"></compose>
</section>
</template>

View 模型是这样的:

import {inject} from 'aurelia-framework';
import refWelcome = require("welcome");

@inject(refWelcome)
export class myApp {
vm;
title: string;
constructor(refWelcome) {
this.title = "My App Demo";
this.vm = refWelcome;

console.log(this.vm);
}
}

这是欢迎 View 的 View 模型:

import {computedFrom} from 'aurelia-framework';

export class Welcome{
heading = 'Welcome to the Aurelia Navigation App!';
firstName = 'John';
lastName = 'Doe';
previousValue = this.fullName;

constructor(fname: string, lname: string) {
if (fname != null || lname != null) {
this.firstName = fname;
this.lastName = lname;
}
}
}

最佳答案

我认为您的代码中存在一些问题 -

  1. 您需要修复 myApp 的 title 属性的语法。
  2. 按照惯例,您应该将类​​命名为 PascalCase。
  3. 目前您不能使用标准的 HTML 导入,如果您需要自定义元素,则需要使用 require

要组合 View ,您可以使用两种方法 -

  1. 编写自定义元素(不需要)

     <template>
    <section class="au-animate">
    <compose view-model="./welcome"></compose>
    </section>
    </template>

不知道为什么没有反引号就不会显示

  1. 作为自定义元素

    <template>
    <require from='welcome'></require>
    <section class="au-animate">
    <welcome></welcome>
    </section>
    </template>

关于Aurelia - 撰写 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33016748/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com