如何理解'要求'在JavaScript中?

时间:2017-06-27 02:31:27

标签: javascript

我现在正在学习摩纳哥编辑,我在这里看到了这段代码:

<!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:1pxsolid 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'
            });
        });
    </script>
</body>
</html>

在代码段中,在匿名函数中创建了一个编辑器,因为在此之前需要monaco

我的困惑是如何从匿名函数中声明一个编辑器?此演示代码肯定限制了editor

的范围

0 个答案:

没有答案