gpt4 book ai didi

angular - 为什么我们在 angular2 中使用 moduleId :module. id

转载 作者:搜寻专家 更新时间:2023-10-30 21:20:02 29 4
gpt4 key购买 nike

为什么在Angular 2组件中使用templateUrl时需要使用moduleId:module.id

import { Component } from '@angular/core';

@Component({
moduleId:module.id,
selector: 'my-app',
templateUrl:`app.component.html`,
})

export class AppComponent { name = 'Angular 2 website'; }

最佳答案

组件的相关资源,例如 @Component 装饰器中的 templateUrl 和 styleUrls。

moduleId 用于解析样式表和模板的相对路径,如文档中所述。

没有模块 ID

@Component({
selector: 'my-component',
templateUrl: 'app/components/my.component.html',
styleUrls: ['app/components/my.component.css']
})

带有模块 ID

@Component({
moduleId: module.id,
selector: 'my-component',
templateUrl: 'my.component.html',
styleUrls: ['my.component.css']
})

关于angular - 为什么我们在 angular2 中使用 moduleId :module. id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42297791/

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