CSV 到 html 表 - 客户端

发布于 2024-12-04 08:20:41 字数 1030 浏览 2 评论 0原文

我有一个表,我想将变量数据附加到其中。我目前拥有 CSV 格式的数据,并使用 PHP 将 csv 调用为 HTML。 PHP 调用 $line_of_text[10] 允许我访问我想要的任何数据。但是我需要在客户端而不是服务器端进行。

我一直在研究 Javascript 数组,这些可能是也可能不是最好的主意。如果有解析数据的代码,我还需要实际的代码从 HTML 页面调用它,并将其放入表中。

我的表格是这样的:(参见JS Fiddle:http://jsfiddle.net/72jQR/2/)

<table cellspacing="0" cellpadding="5"  border="1">    
<tr>
<td>Code</td>
</tr>
<tr>
<td>Description</td>
</tr>
<tr>
<td>Size</td>
</tr>
</table>

在来自 csv 或数组或其他内容的信息之后 - 它看起来像这样:

<table cellspacing="0" cellpadding="5"  border="1">
<tr>
<td>Code</td>
<td>From DATA 12345</td>
</tr>
<tr>
<td>Description</td>
<td>From DATA</td>
</tr>
<tr>
<td>Size</td>
<td>500</td>
</tr>
</table>

执行此客户端的最佳方法是什么?

I have a table that I want to append variable data to. I currently have the data in CSV format, and call the csv to HTML using PHP. The PHP call $line_of_text[10] allows me to access whatever data I want. However I need to do it client side not server side.

I have been looking into Javascript arrays, and these may or may not be the best idea. If there is code to parse the data, I would also need the actual code to call it from the HTML page, and put it into the table.

My table is like this: ( see JS Fiddle: http://jsfiddle.net/72jQR/2/)

<table cellspacing="0" cellpadding="5"  border="1">    
<tr>
<td>Code</td>
</tr>
<tr>
<td>Description</td>
</tr>
<tr>
<td>Size</td>
</tr>
</table>

And After the information from the csv or array or whatever - it looks like this:

<table cellspacing="0" cellpadding="5"  border="1">
<tr>
<td>Code</td>
<td>From DATA 12345</td>
</tr>
<tr>
<td>Description</td>
<td>From DATA</td>
</tr>
<tr>
<td>Size</td>
<td>500</td>
</tr>
</table>

What is the best way to do this client side?

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

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

发布评论

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

评论(2

我乃一代侩神 2024-12-11 08:20:41

这个 jQuery 插件应该在客户端为您完成此操作: http://code.google.com/ p/js-tables/

特别请参阅此页面的示例:http://code.google.com/p/js-tables/wiki/Table

This jQuery plugin should do it for you client-side: http://code.google.com/p/js-tables/

In particular see this page with an example: http://code.google.com/p/js-tables/wiki/Table

诗酒趁年少 2024-12-11 08:20:41

有一个 CSV 到 HTML 在线服务:
http://okfnlabs.org/blog/2013 /12/05/view-csv-with-data-pipes.html

这里还有一个非常简单、轻量级的 JavaScript 库,您可以使用:https://github.com/okfn/csv.js (依赖项很少)

There is a CSV to HTML online service at:
http://okfnlabs.org/blog/2013/12/05/view-csv-with-data-pipes.html

There is also a very simple, lightweight javascript library here you could use: https://github.com/okfn/csv.js (very few dependencies)

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