gpt4 book ai didi

json - 仅使用 json 在另一个 json 文件中包含一个 json 文件

转载 作者:行者123 更新时间:2023-12-01 15:18:22 30 4
gpt4 key购买 nike

在 xml 中,我可以在另一个 xml 文件中包含一个文件并使用它。如果您的软件从 xml 获取配置文件但没有任何方法来分离配置,如 apache/ngnix(nginx.conf - site-available/- site-enable/),这将非常有用。

文件A:

<!DOCTYPE icecast [
<!ENTITY mount SYSTEM "mount.xml">
]>

<icecast>
...
&mount;
...
</icecast>

文件 B:
<mount>
<mount-name>/xyz</mount-name>
<username>source</username>
<password>password</password>
<max-listeners>30</max-listeners>
<hidden>0</hidden>
<public>1</public>
<no-yp>0</no-yp>
</mount>

但是如果配置文件是json格式呢?有等效的方法吗?

我需要更好地组织我的 couchbase-sync 存储桶配置。

最佳答案

JSON 中没有包含另一个文件的机制,就像您描述的那样。 JSON 不像 XML 那样是一种语言,它只是 JavaScript 对象表示法,因此它仅用于描述应用程序对象,没有其他作用。

关于json - 仅使用 json 在另一个 json 文件中包含一个 json 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35066589/

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