循环遍历 cfhttp 文件内容
我需要操作从 get 获得的 cfhttp.filecontent 的每一行:
<cfhttp url="www.internet.com/file.html" method="GET" resolveurl="false"></cfhttp>
<cfoutput>
#cfhttp.FileContent#
</cfoutput>
How will I drop through cfhttp.filecontent line by line?
谢谢!
I need to manipulate each line of a cfhttp.filecontent I got from a get:
<cfhttp url="www.internet.com/file.html" method="GET" resolveurl="false"></cfhttp>
<cfoutput>
#cfhttp.FileContent#
</cfoutput>
How would I loop through cfhttp.filecontent line by line?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,您可以使用列表函数以及 chr(10) 和/或 chr(13) 的某种组合作为列表分隔符。但这完全取决于内容中如何定义“线条”。
Typically you can use list functions with some combination of chr(10) and/or chr(13) as the list delimiter. But it all depends on how "lines" are defined in your content.
另一种选择(如果您使用的是 ColdFusion 9)是将
CFHTTP
请求的内容写入磁盘上的文件,然后使用cfloop
的file
属性进行循环在文件行上 线。Another option (if you're using ColdFusion 9) is to write the content of the
CFHTTP
request to a file on disk, and then use thefile
attribute ofcfloop
to loop over the file line by line.