由于语言(模式)失败,ng2-ace-editor 不显示颜色和折叠
ng2-ace-editor doesn't show colour and folded due to language(mode) fail
我尝试向 XML 编辑展示具有适当编辑经验的编辑。我唯一期待的是正确的着色、压痕和折叠。我使用了 ng2-ace-editor 库。似乎由于语言选择失败,着色和折叠在这里不起作用。
component.ts
this is the code in component.ts
component.html
<ace-editor
[(text)]="xmlToView"
[options]="options"
[durationBeforeCallback]="1000"
[theme]="eclipse"
[mode]="'ace/mode/xml'">
结果
sasc This is the result I get. I want to show the folding as well as color
根据 https://github.com/fxmontigny/ng2-ace-editor 自述文件中的代码示例,您需要使用没有 ace/mode
部分的 [mode]="'xml'"
。
我尝试向 XML 编辑展示具有适当编辑经验的编辑。我唯一期待的是正确的着色、压痕和折叠。我使用了 ng2-ace-editor 库。似乎由于语言选择失败,着色和折叠在这里不起作用。
component.ts
this is the code in component.ts
component.html
<ace-editor
[(text)]="xmlToView"
[options]="options"
[durationBeforeCallback]="1000"
[theme]="eclipse"
[mode]="'ace/mode/xml'">
结果
sasc This is the result I get. I want to show the folding as well as color
根据 https://github.com/fxmontigny/ng2-ace-editor 自述文件中的代码示例,您需要使用没有 ace/mode
部分的 [mode]="'xml'"
。