如何在 Brython 中加载 JSON 文件?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你走在正确的道路上,这就是我的做法。
在我的文件 .bry 中。
由于执行是从 HTML 页面完成的,因此请确保从 .html 文件开始,而不是从 .py 或 .bry 开始搜索 JSON 文件。
另外,检查您的 JSON 文件是否具有正确的结构;)
这是我的树结构。
希望有帮助:D
You are on the right track, here is how I did it.
In my file .bry.
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.
Hoping to have helped :D