React-Codemirror 匹配荧光笔插件不突出显示文本
React-Codemirror match-highlighter addon not highlighting the text
我正在使用 react-codemirror 并想在 Codemirror 中突出显示文本“Hello”,但是匹配荧光笔插件没有突出显示相同的内容。下面是相同的代码。
import React, { Component } from 'react';
import { render } from 'react-dom';
import CodeMirror from 'react-codemirror';
import 'codemirror/lib/codemirror.css';
import 'codemirror/addon/search/match-highlighter';
import 'codemirror/mode/javascript/javascript';
class App extends Component {
constructor() {
super();
this.state = {
name: 'CodeMirror',
code: '//Test Codemirror'
};
}
updateCode(newCode) {
this.setState({
code: newCode,
});
}
render() {
let options = {
lineNumbers: true,
mode: 'javascript',
highlightSelectionMatches: {
minChars: 2,
showToken: /Hello/,
style:'matchhighlight'
},
styleActiveLine: true,
styleActiveSelected: true,
};
return (
<div>
<CodeMirror value={this.state.code} onChange={this.updateCode.bind(this)} options={options}/>
</div>
);
}
}
render(<App />, document.getElementById('root'));
当前输出在下面的截图中,单词没有突出显示。
我找到了这个问题的解决方案。为了启用突出显示,需要添加一个 css 对应于样式 属性。我在 css 文件中添加了以下代码,它开始工作了
.cm-matchhighlight {
background: red !important
}
现在它可以正确突出显示令牌
我正在使用 react-codemirror 并想在 Codemirror 中突出显示文本“Hello”,但是匹配荧光笔插件没有突出显示相同的内容。下面是相同的代码。
import React, { Component } from 'react';
import { render } from 'react-dom';
import CodeMirror from 'react-codemirror';
import 'codemirror/lib/codemirror.css';
import 'codemirror/addon/search/match-highlighter';
import 'codemirror/mode/javascript/javascript';
class App extends Component {
constructor() {
super();
this.state = {
name: 'CodeMirror',
code: '//Test Codemirror'
};
}
updateCode(newCode) {
this.setState({
code: newCode,
});
}
render() {
let options = {
lineNumbers: true,
mode: 'javascript',
highlightSelectionMatches: {
minChars: 2,
showToken: /Hello/,
style:'matchhighlight'
},
styleActiveLine: true,
styleActiveSelected: true,
};
return (
<div>
<CodeMirror value={this.state.code} onChange={this.updateCode.bind(this)} options={options}/>
</div>
);
}
}
render(<App />, document.getElementById('root'));
当前输出在下面的截图中,单词没有突出显示。
我找到了这个问题的解决方案。为了启用突出显示,需要添加一个 css 对应于样式 属性。我在 css 文件中添加了以下代码,它开始工作了
.cm-matchhighlight {
background: red !important
}
现在它可以正确突出显示令牌