如何在 Brython 中加载 JSON 文件?

发布于 2025-01-09 06:10:13 字数 119 浏览 0 评论 0原文

我正在使用 Brython 开发一个页面,我想做的一件事是在同一台服务器上的同一目录中加载一个 JSON 文件。

我怎样才能做到这一点? 打开()?还有别的事吗?

谢谢,

I am working on a page with Brython, and one thing I would like to do is load a JSON file on the same server, in the same directory.

How can I do that? open()? Something else?

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴骨ら 2025-01-16 06:10:13

你走在正确的道路上,这就是我的做法。

在我的文件 .bry 中。

import json

css_file = "static/json/css.json"

j = json.load(open(css_file))

# For debug
console.log(j)

由于执行是从 HTML 页面完成的,因此请确保从 .html 文件开始,而不是从 .py 或 .bry 开始搜索 JSON 文件。

另外,检查您的 JSON 文件是否具有正确的结构;)

这是我的树结构。

|   index.html
|   README.txt
|   unicode.txt
|   
+---static
|   +---assets
|   |       
|   +---css
|   |           
|   +---fonts
|   |                      
|   +---js
|   |         
|   +---json
|   |       css.json
|   |       
|   \---py
|       |   main.bpy

希望有帮助:D

You are on the right track, here is how I did it.

In my file .bry.

import json

css_file = "static/json/css.json"

j = json.load(open(css_file))

# For debug
console.log(j)

Since it is from your HTML page that the execution is done, make sure to start from your .html file and not .py or .bry to search your JSON file.

Also, check if your JSON file has the right structure ;)

Here is my tree structure.

|   index.html
|   README.txt
|   unicode.txt
|   
+---static
|   +---assets
|   |       
|   +---css
|   |           
|   +---fonts
|   |                      
|   +---js
|   |         
|   +---json
|   |       css.json
|   |       
|   \---py
|       |   main.bpy

Hoping to have helped :D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文