如何摆脱 Cfoutput
我正在循环查询结果,并且需要限制显示的行数。我需要使用 cfoutput
因为我使用的是 group
属性,并且无法使用 maxrows
因为并非所有行都会显示。
我尝试在
中使用
,但这会引发错误。
如何跳出
循环?
I am looping through the results of a query, and I need to limit the number of rows displayed. I need to use cfoutput
because I'm using the group
attribute, and I cannot use the maxrows
because not all rows will be displayed.
I tried to use <cfbreak>
inside the <cfoutput>
, but that throws an error.
How can I break out of the <cfoutput>
loop?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的分组依据只是从结果中删除重复项,我建议使用您的查询来减少它们,然后您可以 cfloop (选择不同并减少返回的列列表)。
如果您使用 group by 对结果进行“分组”,您可以在循环中运行一个计数器,并在第一个循环中运行 cfif 语句以忽略后面的结果。
如果您需要 cfbreak,您可以通过匹配前一行的值来伪造 cfloop 中的分组选项
随机注意:您可以在分组 cfoutput 的任何/所有级别上设置 maxrows
If your group by is only there to remove duplicates from your results I would suggest using your query to cut them down then you can cfloop (select distinct and reducing your returned column list).
If you are using your group by to "group" your results You could run a counter within your loop and a cfif statement inside your first loop to omit later results.
You could fake the group by option in your cfloop by matching value from previous row if you need cfbreak
Random note: you can maxrows on any/all levels of your grouped cfoutput
您可以使用 cfthrow 标记触发异常,该异常将允许您使用 cfcatch 跳出循环,然后您可以忽略异常并继续处理。那会给你你想要的。
You could use the cfthrow tag to trigger an exception that will allow you to break out of the loop using cfcatch you can then ignore the exception and continue processing. That will give you what you want.