Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我想treemap从d3.js.
treemap
d3.js
树形图需要来自json文件的数据,json 文件的数据来自数据库(例如 SQLite)。我的数据库中有很多用户,每个用户都有他/她自己的树形图。
json
当他们请求服务器时,如何为不同的用户显示树形图?
我是否必须为每个身体生成 json 文件(每个人都有以他/她的名字命名的他/她的 json 文件)?我只是困惑。请帮忙。
例如,您可以使用 PHP 动态生成 JSON 数据并将其返回给用户。当用户进入“treemap”页面时,您使用他们的用户名作为数据库中的参数,这将返回 JSON 数据。您不需要在服务器上为每个单独的用户存储 JSON 文件。