如何在 json 编辑器中将代码视图设置为默认视图而不是树

How to set code view as deafult instead of tree in jsoneditor

https://github.com/mariohmol/ang-jsoneditor.

我已经将上面的库用于 jsoneditor.Here 我有默认的树视图 one.But 我想要代码视图。如何设置它以及在哪里更改 it.I 我正在完成 html inspect 中的元素,但在代码中我没有找到它们。here tree view appears when page loads

    const container = document.getElementById("id_editor");
    var options = {
        modes: ['code', 'tree'],
        mode: "code",
    };
    const editor = new JSONEditor(container, options);

注意选项字典中的模式键(NOT MODES)。