0

对于https://github.com/securingsincity/react-ace

我知道文档不支持模式 php - 但我想使用它。

有没有办法包括添加它的步骤?https://ace.c9.io似乎支持它 - 有没有简单的方法来添加额外的模式/主题?

4

1 回答 1

3

嗨大括号包也支持php模式......

大括号(ace-editor)参考的支持模式列表

import React from 'react'
import AceEditor from 'react-ace'

import 'brace/mode/php'
import 'brace/snippets/php';
import 'brace/theme/tomorrow'

const MyEditor = () => {
 return (
   <AceEditor
     name="my-editor"
     mode="php"
     theme="tomorrow"
     value=""
     width="100%"
     height="500px" />
 )
}

export default MyEditor

于 2019-04-06T03:10:49.783 回答