gpt4 book ai didi

javascript - 如何将 JSON 与 react-ace 一起使用?

转载 作者:行者123 更新时间:2023-12-03 17:08:12 24 4
gpt4 key购买 nike

我正在使用 react-ace并尝试使用 java 语法的自述文件示例。效果很好。但我似乎无法将其设置为 JSON。
Java 工作

import AceEditor from "react-ace";
import "ace-builds/src-noconflict/mode-java";
import "ace-builds/src-noconflict/theme-github";

<AceEditor
mode="java"
theme="github"
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
/>
JSON 不起作用?
import AceEditor from "react-ace";
import "ace-builds/src-noconflict/mode-json";
import "ace-builds/src-noconflict/theme-github";

<AceEditor
mode="json"
theme="github"
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
/>
错误

Refused to execute script from '...../worker-json.js' because its MIME type ('text/html') is not executable.(anonymous) @ 2f896707-86be-497a-93b2-e1711942d7c7:12f896707-86be-497a-93b2-e1711942d7c7:1 Uncaught DOMException: Failed to execute 'importScripts' on 'WorkerGlobalScope': The script at '...../worker-json.js' failed to load.


如何使用 JSON?

最佳答案

尝试设置选项useWorker: false

      <AceEditor
mode="json"
theme="github"
onChange={onChange}
name="UNIQUE_ID_OF_DIV"
editorProps={{ $blockScrolling: true }}
setOptions={{
useWorker: false
}}
/>

关于javascript - 如何将 JSON 与 react-ace 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65616136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com