我需要操作我从get获得的cfhttp.filecontent的每一行:
<cfhttp url="www.internet.com/file.html" method="GET" resolveurl="false"></cfhttp>
<cfoutput>
#cfhttp.FileContent#
</cfoutput>
我将如何逐行循环遍历cfhttp.filecontent?
谢谢!
答案 0 :(得分:5)
通常,您可以将列表函数与chr(10)和/或chr(13)的某种组合用作列表分隔符。但这一切都取决于&#34; line&#34;在您的内容中定义。
<cfoutput>
<cfloop list="#cfhttp.FileContent#" delimiters="#chr(10)#" index="line">
#line#<br>
</cfloop>
</cfoutput>
答案 1 :(得分:0)
另一个选项(如果您使用的是ColdFusion 9)是将CFHTTP
请求的内容写入磁盘上的文件,然后使用file
attribute of cfloop
逐行循环遍历文件