如何使用 PHP 从 ACE 编辑器中获取所有值

How to get all value from ACE Editor using PHP

我用了ACE Editor。我想使用 PHPACE Editor 中获取所有值。我怎样才能得到?

我写了JQuery Ajax代码

 $('#save').click(function(){
            var editor = ace.edit("editor");
            var code = editor.getSession().getDocument().getValue();
                  $.ajax({
                       type: "POST",
                       url: "data.php",
                       data: {'code':code},
                       success: function (data) {
                           console.log(data);
                       }
                     });
        });

当这段代码工作时,并不是所有的代码都来了,我该怎么办?没有 getlValue()getSession()

谢谢问候

我解决了

就是这样

$('#save').click(function(){
            var editor = ace.edit("codeArea");
            var code = editor.getSession().getValue();
                  $.ajax({
                       type: "POST",
                       url: "data.php",
                       data: {'code':code},
                       success: function (data) {
                           console.log(data);
                       }
                     });
        });

所有你需要做的 ace.edit('codeArea'); 而不是 'editor'