gpt4 book ai didi

angular8 - 数字列未显示使用角度 8 中的 ngx-highlightJs

转载 作者:行者123 更新时间:2023-12-03 17:12:31 26 4
gpt4 key购买 nike

给定数据是一些主要的 HTML 页面和模块的提供者

<pre>
<code [highlight]="previewText" [lineNumbers]="true"></code>
</pre>

providers: [
{
provide: HIGHLIGHT_OPTIONS,
useValue: <HighlightOptions>{
lineNumbers: true
}
}
]

最佳答案

在 app.module.ts 文件中

import { HighlightModule, HIGHLIGHT_OPTIONS, HighlightOptions } from 'ngx-highlightjs';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HighlightModule
],
providers: [
{
provide: HIGHLIGHT_OPTIONS,
useValue: <HighlightOptions>{
lineNumbers: true
}
}
],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.ts
import { Component } from '@angular/core';
import { HighlightResult } from 'ngx-highlightjs';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
// response: HighlightResult;

code = `const index=0`
}
app.component.html
<pre><code [highlight]="code" [lineNumbers]="true" ></code></pre>

关于angular8 - 数字列未显示使用角度 8 中的 ngx-highlightJs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59987355/

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