我如何推动这个小缓存脚本

时间:2016-07-12 07:31:50

标签: coldfusion coldfusion-9

我定期收到产品ID列表,并使用cfhttp调用这些动态页面,并将收到的响应保存为根文件夹中的html文件

我的脚本可能看起来像

<cfloop list="#productlist# index="productid" >
  <cfhttp url="//domainname.com" result="result" charset="utf-8"> 
    <cfhttpparam type="formfield" name="productid" value="#productid#"> 
  </cfhttp> 
  <cfset content = result.filecontent> 
  <cffile action="write" file="#filename#" output="#trim(content)#" /> 
</cfloop>

是否有更好或更优化的方法来实现这一结果?

0 个答案:

没有答案