IT俱乐部 JavaScript react-json-editor-ajrm解析错误与解决方案

react-json-editor-ajrm解析错误与解决方案

背景

由于历史原因,项目中 JSON 编辑器使用的是 react-json-editor-ajrm,近期遇到一个严重的展示错误,传入编辑器的数据与展示的不一致,这是产品和用户不可接受的。

工具介绍

react-json-editor-ajrm 可以用于查看、编辑和校验 JSON 对象。但这个项目已经不再积极维护,并计划在2023年6月15日废弃。

https://github.com/AndrewRedican/react-json-editor-ajrm

Warning: As you may already know, the react-json-editor-ajrm’s orignal project is not actively maintained and that it will eventually be deprecated. So I’ve decided to set an official date for deprecation. The tentative date for this is June 15, 2023.

问题复现

使用官方示例

https://github.com/AndrewRedican/react-json-editor-ajrm/blob/master/example/create-react-app-project/src/index.js

这里仅把测试数据换成能复现问题的数据(在解析嵌套带引号数据时会出问题)

export const testData = {
  "key1": "{"test":"{"name":"editor"}"}",
  "key2": "{"name":"editor"}",
  "key3": {
    "name": "editor"
  }
}

import React, { Component } from "react";
import ReactDOM from "react-dom";
import "./index.css";

import JSONInput from "react-json-editor-ajrm/index";
import locale from "react-json-editor-ajrm/locale/en";

import { testData } from "./testData";

class App extends Component {
  render() {
    /**
     * Rendering this JSONInput component with some properties
     */
    return (
      
{ console.log("jsoneditor-onchange-e", e); }} />
); } } ReactDOM.render(, document.querySelector("#root"));

渲染效果如图:

很明显能看出问题,key1、key2 的展示都跟原始数据不一致

探究原因

这是用一个常用的 JSON 格式化工具的展示效果。证明数据是没问题的,而是 react-json-editor-ajrm 内部处理逻辑导致的问题。

深入分析 react-json-editor-ajrm 源码,发现 this.tokenize 函数在处理传入数据时出现了问题。这导致了数据标记(tokens)的生成错误,进一步导致 markupText 的错误,最终影响了数据的展示。

分析链路

  • render 函数中,dangerouslySetInnerHTML: this.createMarkup(markupText)

  • showPlaceholder 函数中
const data = this.tokenize(placeholder);
    this.setState({
      prevPlaceholder: placeholder,
      plainText: data.indentation,
      markupText: data.markup,
      lines: data.lines,
      error: data.error
    });
  • placeholder 是传入的数据
  • markupText 取自 this.tokenize(placeholder),然后更新
  • 关键在于 this.tokenize 对 placeholder 的处理,这里直接给出 this.tokenize 调用后的结果,感兴趣的可以查看源码

markup

"{
  key1: '{'':'{
    'name': 'editor'
  }'}',
  key2: '{'':''}',
  key3: {
    name: 'editor'
  }
}"

解决方案

由于这是 react-json-editor-ajrm 内部处理逻辑导致的,所以只能考虑更换依赖包。

调研发现可以使用 jsoneditor-react,这里给出简单的示例:

import { JsonEditor as Editor } from 'jsoneditor-react';
import 'jsoneditor-react/es/editor.min.css';

import React from 'react'
import { testData } from './testData';
function App() {
  return (
     {
          console.log("jsoneditor-react-val", val);
        }}
    />
  )
}

export default App

项目启动后,发现展示是符合预期的,也没有别的问题,可以使用 jsoneditor-react 作为替换的三方包。

工具对比

react-json-editor-ajrm vs jsoneditor-react

https://npmtrends.com/jsoneditor-react-vs-react-json-editor-ajrm

npmtrends.com/ 中对两个工具的下载趋势进行了对比

pkg 简介 star 地址
react-json-editor-ajrm A stylish, editor-like, modular, react component for viewing, editing, and debugging javascript object syntax! 354 https://github.com/AndrewRedican/react-json-editor-ajrm
jsoneditor-react react wrapper implementation for jsoneditor 262 https://github.com/vankop/jsoneditor-react
jsoneditor 11.3k https://github.com/josdejong/jsoneditor

虽然从下载量以及 GitHub star 数量来看,jsoneditor-react 并不如 react-json-editor-ajrm,但 jsoneditor-react 是基于 jsoneditor 二次封装的,所以稳定性还是有一定的保障。

以上就是react-json-editor-ajrm解析错误与解决方案的详细内容,更多关于react-json-editor-ajrm错误的资料请关注IT俱乐部其它相关文章!

本文收集自网络,不代表IT俱乐部立场,转载请注明出处。https://www.2it.club/navsub/js/12285.html
上一篇
下一篇
联系我们

联系我们

在线咨询: QQ交谈

邮箱: 1120393934@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部