感谢回复!!但我仍然无法做到。我得到的错误是“元素 objGet1 在类型为coldfusion.runtime.VariableScope 的Java 对象中未定义。”
下面是我的完整代码。我只想转储包含 cfhttp 信息的每个线程的值。
http://www.google.com/search?" & "q=Vin+Diesel" & "&num=10" & "&start=") />
<cfset intStartTime = GetTickCount() />
<cfloop index="intGet" from="1" to="10" step="1">
<!--- Start a new thread for this CFHttp call. --->
<cfthread action="run" name="objGet#intGet#">
<cfhttp method="GET" url="#strBaseURL##((intGet - 1) * 10)#" useragent="#CGI.http_user_agent#" result="THREAD.Get#intGet#" />
</cfthread>
</cfloop>
<cfloop index="intGet" from="1" to="10" step="1">
<cfthread action="join" name="objGet#intGet#" />
<cfdump var="#Variables['objGet'&intGet]#"><br />
</cfloop>
当我在循环内加入线程后使用时。我得到了想要的结果谢谢!!