gpt4 book ai didi

ace-editor - 如何在 Ace Editor 中使用美化?

转载 作者:行者123 更新时间:2023-12-04 01:34:49 28 4
gpt4 key购买 nike

我在 Ace 编辑器中找到了美化扩展,但我没有看到任何如何使用它的示例。这是我到目前为止所拥有的:

var beautiful = ace.require("ace/ext/beautify");
beautiful.beautify();

但我收到错误:
Result of expression 'e' [undefined] is not an object.

最佳答案

看起来像这样:

var beautify = ace.require("ace/ext/beautify"); // get reference to extension
var editor = ace.edit("editor"); // get reference to editor
beautify.beautify(editor.session);

它要求您将 Ace Editor session 作为第一个参数传递。在我最初的问题中,我没有传入任何变量,这引发了错误。

注意:它在扩展发行说明中提到的效果不佳。它运行得不够好,无法使用。

关于ace-editor - 如何在 Ace Editor 中使用美化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31767051/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com