在Angular2项目中,可以通过以下步骤将脚本加载到资源中:
以下是一个示例代码:
import { Component, Inject } from '@angular/core';
import { DOCUMENT } from '@angular/common';
@Component({
selector: 'app-example',
template: '<h1>Example Component</h1>',
})
export class ExampleComponent {
constructor(@Inject(DOCUMENT) private document: Document) {
const script = this.document.createElement('script');
script.setAttribute('src', 'assets/script.js');
this.document.head.appendChild(script);
}
}
这样,脚本文件就会被加载到Angular2项目的资源中,并可以在需要的组件中使用。请注意,脚本文件的路径应根据实际情况进行调整。
推荐的腾讯云相关产品:腾讯云对象存储(COS)。 腾讯云产品介绍链接地址:https://cloud.tencent.com/product/cos
领取专属 10元无门槛券
手把手带您无忧上云