我想在浏览器中使用Coldfusion从xls文件中显示多个标签,即多个标签。我有很好的逻辑,但我不确定是否有办法做到这一点。我的逻辑如下:
<cfspreadsheet
action="read"
format="html"
src="test.xls"
name="Spreadsheet"
<cfloop index="i" from="1" to="5"> <!--- or however many tabs there are --->
sheet="#i#"
</cfloop>
>
<table>
<cfoutput>
#Spreadsheet#
</cfoutput>
</table>
现在我知道这段代码不起作用,所以我一直在寻找类似的解决方案。提前谢谢大家。
答案 0 :(得分:2)
尝试将cfloop放在cfspreadsheet
周围<cfloop from="1" to="5" index="i">
<cfspreadsheet
action="read"
format="html"
src="test.xlsx"
sheet="#i#"
name="spreadsheet">
<cfdump var="#spreadsheet#"><br>
</cfloop>