gpt4 book ai didi

angularjs - angular2 quickstart 找不到名称 'module'

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

我正在按照英雄之旅教程构建我的第一个应用程序。我编写了一个组件文件 threads.component.ts,如下所示:

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

但我收到错误“找不到名称模块”,我该怎么做才能解决这个问题?

最佳答案

这是 typescript 错误。您可以为节点添加类型并得到解决:

 npm install -D @types/node

在你的 tsconfig 中:

//tsconfig.json
{
...
"compilerOptions": {
"types" : ["node"]
}
...
}

如果您不想安装类型,则使用更简单的版本:

将其添加到您的组件顶部:

declare var module: {
id: string;
}

关于angularjs - angular2 quickstart 找不到名称 'module',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42406133/

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