如何在验证错误上删除ace编辑器的内容

时间:2014-03-27 11:35:01

标签: ace-editor

我的问题与set focus on ace editor

有关

这次我想在验证错误时删除内容。

我使用了像

这样的模式
/^[0-4]$/ and /^([1-9][0-9]{0,3}|[1-5][0-9]{4}|60000)$/;

分别检查0-4和1-60000之间的值。当用户提供无效数据时,我的文本区域被清除,但不是ace编辑器。我也试过

    $scope.close = function () {
rowObj.entity.value = editor.getValue();
            editor.setValue("",0);
                };

但这不起作用。

1 个答案:

答案 0 :(得分:4)

清除编辑器只需拨打editor.setValue("")

即可