0
這是一個test.html
文件中的html代碼片段。如何在摩納哥編輯器中設置文件的路徑?
<script src="monaco-editor/min/vs/loader.js"></script>
<script>
\t require.config({ paths: { 'vs': 'monaco-editor/min/vs' }});
\t require(['vs/editor/editor.main'], function() {
\t \t var editor = monaco.editor.create(document.getElementById('container'), {
\t \t \t value: [
\t \t \t \t 'function x() {',
\t \t \t \t '\tconsole.log("Hello world!");',
\t \t \t \t '}'
\t \t \t ].join('\n'),
\t \t \t language: 'javascript'
\t \t });
\t });
</script>
這是我的系統上的文件樹。
ide ├── cpp14 │ ├── test.html ├── monaco └── node_modules ├── monaco-editor └── test.html
我複製test.html
文件從monaco/node_moules/
到cpp14
而且改變了所有的路徑在cpp14/test.html
到
<script src="ide/monaco/node_modules/monaco-editor/min/vs/loader.js"></script>
<script>
\t require.config({ paths: { 'vs': 'ide/monaco/node_modules/monaco-editor/min/vs' }});
\t require(['ide/monaco/node_modules/monaco-editor/min/vs/editor/editor.main'], function() {
\t \t var editor = monaco.editor.create(document.getElementById('container'), {
\t \t \t value: [
\t \t \t \t 'function x() {',
\t \t \t \t '\tconsole.log("Hello world!");',
\t \t \t \t '}'
\t \t \t ].join('\n'),
\t \t \t language: 'javascript'
\t \t });
});
這不是工作,我認爲有是錯誤的在代碼片段中設置這些文件的路徑。 如何使這項工作?