gpt4 book ai didi

angular - 在 Angular 中导入 JS 库

转载 作者:太空狗 更新时间:2023-10-29 18:19:38 26 4
gpt4 key购买 nike

我正在尝试在 Angular 项目中使用外部库。这是来自 https://github.com/bramstein/fontfaceobserver 的文档

如果你使用 npm,你可以安装 Font Face Observer 作为依赖项:

$ npm install fontfaceobserver
You can then require fontfaceobserver as a CommonJS (Browserify) module:

var FontFaceObserver = require('fontfaceobserver');

var font = new FontFaceObserver('My Family');

font.load().then(function () {
console.log('My Family has loaded');
});

库是使用 require 导入的,但 Angular 不喜欢该关键字。是否有一些导入库的标准方法?

最佳答案

如果它是 webpack,你应该能够使用 es6 导入来导入它。刚刚安装它,这对我有用:

从“fontfaceobserver”导入 FontFaceObserver

this.font = new FontFaceObserver('ariel');

this.font 看起来像这样:

this.font = {
family:"ariel",
stretch:"normal",
style:"normal",
weight:"normal"
}

关于angular - 在 Angular 中导入 JS 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46769172/

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