我正在编写代码以在代码镜像中显示JSON的合并视图。我面临的问题是代码镜像模式。它适用于字符串,但不适用于JSON。我尝试使用application / json但仍然没有运气。
以下是我的代码:
$timeout(function() {
var a = document.getElementById("diffView");
dv = CodeMirror.MergeView(a, {
value: json1,
orig: json2,
lineNumbers: true,
// mode: "javascript",
mode: "application/json",
highlightDifferences: true,
matchBrackets: true,
autoCloseBrackets: true,
lineWrapping: true
});
}, 1);
json1和json2是我的jsons。