作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人对ColdFusion 11中的cfflush标签有疑问吗?我们有一个例程,可以在处理循环时更新实时记录计数。在ColdFusion 10中,这可以正常工作。在ColdFusion 11中,它一直等到循环结束才更新屏幕。并不是我们所期望的。
编辑以根据要求添加代码...
<script language="javascript">
addOutputLine('<br /><span id="insertCount">Records Inserted: 0</span>')
</script>
<cfset insertCount = 0>
<cfset updateCountAfter = 1>
<cfif qry.recordcount gt 5000>
<cfset updateCountAfter = 10>
</cfif>
<cfoutput query="qry" startrow="#DATASTART#">
<!---do some stuff here that is not important to this issue--->
<cfset insertCount = insertCount + 1>
<cfif updateCountAfter gt 1>
<cfif insertCount mod updateCountAfter eq 0>
<script language="javascript">document.getElementById('insertCount').innerHTML = 'Records Inserted: #insertCount#';</script>
</cfif>
<cfelse>
<script language="javascript">document.getElementById('insertCount').innerHTML = 'Records Inserted: #insertCount#';</script>
</cfif>
<cfflush>
</cfoutput>
最佳答案
从评论提升
为了使<cfflush>
标记与Web服务器一起正常工作,需要进行一些配置设置。在Configuring web servers in Windows文档页面上的“为Windows中的ColdFusion配置IIS”部分下,它指出:
To disable webserver buffer, change the
is_buffer_enable
[sic] tofalse
in the cfroot\config\wsconfig\1\isapi_redirect.properties file. Disable webserver buffer if you want cfflush to work over an IIS connector. If your application does not use cfflush, set it to true for increase in the performance.
iis_buffer_enable
,而不是
is_buffer_enable
(缺少“i”)。感谢KrunchMuffin指出这一点。
关于coldfusion - ColdFusion 11 cfflush标记无法正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27115260/
我是一名优秀的程序员,十分优秀!