我一直在看这个,但我还没找到合适的解决方案。我正在使用bootstrap模式(希望)从目录中显示CSV文件。我使用PHP,HTML和CSS。目标是使用<a>
标记显示填充了目录中不可编辑的CSV屏幕截图的模式。
<img>
所在的位置,是我要调用目录以显示CSV文件的位置。
Bootstrap:
<div class="modal fade bd-example-modal-lg" id="CSVModal" tabindex="1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3>CSV File Preview</h3>
</div>
<div class="modal-body">
<img id="ctl00_XXX" src="Images/XXX.png" style="border: 0; float: left; margin-right: 15px" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
目录:
d:\上传\ Test.csv
答案 0 :(得分:0)
您可以将csv的内容提供给papa parse之类的内容,并将数据显示在弹出窗口div中的表格中。
请参阅演示https://www.papaparse.com/demo并查看本地文件实现。