gpt4 book ai didi

angular - 将力矩添加到 Angular 2( Angular cli)

转载 作者:太空狗 更新时间:2023-10-29 17:22:11 29 4
gpt4 key购买 nike

我已经在 cli github page 中遵循了指导线.但是我无法让它在我的应用程序中运行。
这是我所做的:

  1. 安装时刻:npm install moment --save
  2. 已安装的 moment ts 类型:npm install @types/moment --save
  3. 在我的组件之一中导入时刻:import * as moment from 'moment';

我收到以下错误: img

有什么想法吗?

最佳答案

在最新版本的 angular-cli 中安装第三方库变得更加简单。 (webpack 版本,不是 systemjs 版本)。

转到项目根目录下的 angular-cli.json 并进行配置,

{
...
"apps": [
...
"scripts": [
"../node_modules/moment/min/moment.min.js"
]
...
]
...
}

最后,在你的 any.component.ts 中,你可以像这样导入它,

import { Component, OnInit } from '@angular/core';
import * as moment from 'moment';

@Component({
selector: '[id=home]',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {
constructor() { }

ngOnInit () {
console.log('today is', moment());
}
}

关于angular - 将力矩添加到 Angular 2( Angular cli),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39765338/

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