基于网络的电子表格,可以访问数据库

发布于 2024-11-05 02:49:49 字数 393 浏览 0 评论 0原文

我对网络开发有点陌生,想要了解如何处理我的项目。

我们有一个大型 mysql,其中包含相当大的数据集,我们希望人们能够使用它。有没有办法拥有某种基于网络的电子表格,除了进行正常的电子表格计算之外,还可以查询数据库并提取内容?我们拥有有关我们研究的公司的利基静态信息,理想情况下,用户会访问该网站并能够访问我们的数据,同时添加自己的逻辑(数学运算符)以使其与他们更相关。

我们还不想创建一个 API 来连接到他们的桌面,并且希望完全通过网络来完成此操作。

如果您对您使用的方法或工具有任何帮助,我们将不胜感激。

提前致谢

编辑:我找到了一个很好的用于 drupal“Sheetnode”的工具,它使用 phpexcel....我会研究它,我不完全确定它是否允许在单元格中添加 mysql 查询。

I'm a bit new to web development and wanted some insight on how to approach a project of mine.

We have a large mysql with a fairly large dataset that we want people to be able to play around with. Is there a way to have some sort of web based spreadsheet that, in addition to do normal spreadsheet calculations, query a database and pull down content? We have niche statical information on companies we research, ideally a user would come to the site and be able to access our data while adding their own logic(math operators) to make it more relevant to them.

We don't want to create an api to connect to their desktops(yet) and want to do this entirely over the web.

Any help on the approach or tools you'd use would be greatly appreciated.

Thanks in advance

Edit: I found a good tool for drupal "Sheetnode" which uses phpexcel....I'll study it, I'm not totally sure if it allows mysql queries to be added within cells.

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

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

发布评论

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

评论(3

笑,眼淚并存 2024-11-12 02:49:49

尝试一下 YUI 数据表。 YUI 库是文档最齐全的库之一。是的,您可以对工作表中的每个单元格进行查询。您可以使用一个查询来填充整个电子表格,然后使用另一个查询来更新每个单独的单元格。您将负责使用您自己的自定义模块在 Drupal 中编写服务器端代码。 Drupal 中的 menu_hook 将允许您接受来自数据表和 JavaScript 的 RESTful 调用。

Give YUI datatable a try. The YUI library is one of the best-documented libraries. Yes, you can do queries for every cell in the sheet. You can use one query to populate the whole spreadsheet, and then another query for updating each individual cell. You will be responsible for programming the server-side code in Drupal using your own custom module. The menu_hook in Drupal will allow you to accept RESTful calls from the datatable and JavaScript.

网白 2024-11-12 02:49:49

我发现 phpexcel ( phpexcel.codeplex.com/ ) 可以满足我的需求,并且有一个适合我的 drupal 模块。

I found phpexcel ( phpexcel.codeplex.com/ ) does what I want and there's a module for drupal for me.

苍景流年 2024-11-12 02:49:49

如果您熟悉 Java,最相关的选择可能是 https://vaadin.com/spreadsheet 和使用开源框架 Vaadin(免责声明:我为该工具背后的公司工作)。

一样简单。

Spreadsheet s = new Spreadsheet(
    new File("/path/to/some/xls/file/on/server.xlsx"));
layout.addComponent(s);

但无论如何,这就像在网络浏览器中添加 Excel 文件

If you're familiar with Java, the most relevant choice would probably be https://vaadin.com/spreadsheet and using the open source framework Vaadin (Disclaimer: I'm working for the company behind the tool).

But anyhow, with this it's as easy as:

Spreadsheet s = new Spreadsheet(
    new File("/path/to/some/xls/file/on/server.xlsx"));
layout.addComponent(s);

to add a excel file in your web browser.

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