2
我在Coldfusion中有一個循環,它會運行很長時間;大約2-4分鐘。Colfdfusion循環狀態更新Ajax
我想在每次循環運行時顯示狀態更新。
循環:
<cfloop index="i" from=1 to=70>
<cfset allHtmlFiles=getThirdXml.XmlRoot.XmlChildren[i].XmlChildren[1].XmlText>
<cfset ArrayAppend(seekurl, allHtmlFiles)>
</cfloop>
循環這需要顯示數據的護理:
<cfloop index="loopcount" from=1 to=92>
<cfset checkThisUrl = #seekurl[loopcount]#>
<cfset completeUrl ="http://myurl.com/?ids=#checkThisUrl#">
<cfhttp result="get" method="get" url="#completeUrl#">
<cfset nieuw =deserializeJSON(get.filecontent)>
<cfoutput>
<tr>
<cfif nieuw[checkThisUrl].id IS NOT 0>
<td>#nieuw[checkThisUrl].id#</td>
</cfif>
<cfif isDefined("nieuw[checkThisUrl].shares")>
<td style="text-align: right">#nieuw[checkThisUrl].shares#</td>
</cfif>
</tr>
</cfoutput>
</cfloop>
我怎樣才能做到在每一個運行的Ajax更新?
謝謝。這確實是一個更好的解決方案。謝謝! – Proto 2011-02-14 10:20:01