Angular 13- 从服务返回的HTML在附加到文档后,scss样式未应用。
创始人
2024-10-15 10:31:40
0

要解决从服务返回的HTML未应用scss样式的问题,需要使用Angular的动态组件和ViewContainerRef。以下是一个可能的解决方法的代码示例:

首先,创建一个动态组件,用于呈现从服务返回的HTML并应用样式。在命令行中执行以下命令:

ng generate component DynamicComponent

在dynamic.component.ts文件中,添加以下代码:

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

@Component({
  selector: 'app-dynamic',
  template: '
', styleUrls: ['./dynamic.component.scss'] }) export class DynamicComponent { @Input() html: string; }

然后,在父组件中使用ViewContainerRef来动态加载DynamicComponent并将服务返回的HTML传递给它。在父组件的ts文件中,添加以下代码:

import { Component, ViewChild, ViewContainerRef, AfterViewInit } from '@angular/core';
import { DynamicComponent } from './dynamic/dynamic.component';
import { YourService } from './your.service';

@Component({
  selector: 'app-root',
  template: '
' }) export class AppComponent implements AfterViewInit { @ViewChild('container', { read: ViewContainerRef }) container: ViewContainerRef; constructor(private yourService: YourService) {} ngAfterViewInit() { const html = this.yourService.getHTML(); // 从服务获取HTML const componentFactory = this.componentFactoryResolver.resolveComponentFactory(DynamicComponent); const componentRef = this.container.createComponent(componentFactory); componentRef.instance.html = html; } }

在上面的代码中,yourService是一个示例服务,通过getHTML方法获取HTML。

最后,在dynamic.component.scss文件中,添加所需的样式。

这样,从服务返回的HTML将以动态组件的形式附加到文档中,并且scss样式将被应用。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...