gpt4 book ai didi

ace-editor - 如何向ace编辑器添加警告或错误通知

转载 作者:行者123 更新时间:2023-12-04 22:47:21 24 4
gpt4 key购买 nike

我正在使用ACE编辑器进行交互式python编辑,与此同时,我在后端有一个python解释器,它将python代码解析为结果。

当用户将代码提交到后端时,python解析器会将代码解析为结果,如果发生错误,它将返回行和列以及错误说明(采用JSON格式)

现在的问题是ACE如何在特定位置显示错误

最佳答案

您可以使用注释来显示错误。编辑器装订线显示错误,甚至警告或带有错误消息的信息。

var editor = ace.edit("editor");

editor.getSession().setAnnotations([{
row: 1,
column: 0,
text: "Error Message", // Or the Json reply from the parser
type: "error" // also "warning" and "information"
}]);

关于ace-editor - 如何向ace编辑器添加警告或错误通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18534096/

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