代码镜像合并View for JSON

时间:2017-04-19 11:25:26

标签: javascript html css angularjs json

我正在编写代码以在代码镜像中显示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。

0 个答案:

没有答案