我能够在ace-editor中获得themePath(我正在使用nom ace-builds bundle)来工作。我可以设置基本路径,并且编辑器可以很好地加载,但是它仍在默认目录中寻找主题。
import ace
import ace from 'ace-builds'
import {Range, EditSession} from 'ace-builds'
// import modes that you want to include into your main bundle
import "ace-builds/src-noconflict/mode-yaml";
// import webpack resolver to dynamically load modes,
you need to install file-loader for this to work!
import "ace-builds/webpack-resolver";
ace.config.set("themePath","../static/js");
ace.config.set("basePath","../static/js");
ace.config.set("modePath","../static/js");
var editor = ace.edit("ace_editor_playbook", {
maxLines: 25,
minLines: 25,
value: "---" + "\n",
mode: "ace/mode/yaml",
theme: "ace/theme/vibrant_ink",
bug: 1
})
谢谢。
答案 0 :(得分:0)
themePath,因为https://github.com/ajaxorg/ace-builds/blob/master/webpack-resolver.js显式设置了所有主题的路径。如果要使用themePath,请不要加载webpack-resolver