web-dev-qa-db-ja.com

モナコエディターの価値を得る

マイクロソフトは最近、モナコエディターをオープンソース化しました(ace/codemirrorと同様)。

https://github.com/Microsoft/monaco-editor

私はそれをブラウザーで立ち上げて実行していますが、それを保存したい場合のように、エディターの現在のテキストを取得する方法がまだわかりません。

例:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
</head>
<body>

<div id="container" style="width:800px;height:600px;border:1px solid grey"></div>

<script src="monaco-editor/min/vs/loader.js"></script>
<script>
    require.config({ paths: { 'vs': 'monaco-editor/min/vs' }});
    require(['vs/editor/editor.main'], function() {
        var editor = monaco.editor.create(document.getElementById('container'),                 {
            value: [
                'function x() {',
                '\tconsole.log("Hello world!");',
                '}'
            ].join('\n'),
            language: 'javascript'
        });
    });

    function save() {
       // how do I get the value/code inside the editor?
       var value = "";
       saveValueSomewhere(value);     
    }
</script>
</body>
</html>
22
Kyle Gobel
require.config({ paths: { 'vs': 'monaco-editor/min/vs' }});
require(['vs/editor/editor.main'], function() {
    window.editor = monaco.editor.create(document.getElementById('container'),                 {
        value: [
            'function x() {',
            '\tconsole.log("Hello world!");',
            '}'
        ].join('\n'),
        language: 'javascript'
    });
});

function save() {
   // get the value of the data
   var value = window.editor.getValue()
   saveValueSomewhere(value);     
}
23
Jonathan Ho

エディターとモデルの両方がコンテンツの取得をサポートします。

したがって、エディターまたはモデルへの参照を保持している限り、コンテンツをクエリできます。

_var editor = monaco.editor.create(...);
var text = editor.getValue();
_

またはモデルの場合:

_var model = monaco.editor.createModel(...);
var text = model.getValue();
_

Diff-editorを使用している場合、editorでテキストに直接アクセスすることはできませんが、個々のモデルで(つまり、 IStandaloneDiffEditor.getModel() ):

_var diffEditor = monaco.editor.createDiffEditor(...);
var originalText = diffEditor.getModel().original.getValue();
var modifiedText = diffEditor.getModel().modified.getValue();
_

または、さまざまなエディターを使用して( getModifiedEditor() and getOriginalEditor() ):

_var originalText = diffEditor.getModifiedEditor().getValue();
var modifiedText = diffEditor.getOriginalEditor().getValue();
_

テキストの一部に興味がある場合に備えて、モデルは getValueInRange() もサポートします。これにより、開始列と終了列で区切られた、指定された範囲のテキストと行番号、例えば:

_var editor = monaco.editor.create(...);
var model = editor.getModel();
var partOfTheText = model.getValueInRange({
  startLineNumber: 1,
  startColumn: 2,

  endLineNumber: 3,
  endColumn: 10,
})
_
6
MSeifert

私にとっては、このwindow.editor.getValue()は機能しませんでしたが、以下のコードは機能しました。

_<div id="container" style="width:950px;height:700px;"></div>
<script src="./monaco-editor/dev/vs/loader.js"></script>
<script>
    require.config({ paths: { 'vs': 'monaco-editor/min/vs' }});
    require(['vs/editor/editor.main'], function() {
        var editor = monaco.editor.create(document.getElementById('container'), {
            value: [
                'print "Hello World!"',
                '# python'
            ].join('\n'),
            language: 'python',
            theme: "vs-dark"
        });

        function saveI() 
        {
            getVal = editor.getValue()
            // get the value of the data
            alert(getVal)
        }
        document.getElementById('container').onclick = saveI;

    });
    // Themes: vs-dark , hc-black
    // language: text/html , javascript
</script>
_

'container'を 'htmlButton'に変更し、saveI()関数でjQuery ajaxを使用してコードを保存できます。

2
cyera