定时任务输出到html Coldfuson 2016

Scheduled task output to html Coldfuson 2016

我们移植到 CF 2016,现在在计划任务中遇到错误

此代码曾经有效:

<cfschedule action="update" task="ia_scheduler" operation="HTTPRequest"
        url="#sURL#" startdate="#runDate#" starttime="#runTime#"
        path="#request.basepath#" file="ia_scheduler.html"
        resolveurl="yes" publish="yes" interval="3600" requesttimeout="900">

如果我将 html 更改为 .txt 它会起作用,但我更喜欢 html 扩展

file="ia_scheduler.html" to file="ia_scheduler.txt"

错误抛出

Invalid extension of the file name.
Valid extensions are : log,txt. 

如何在 cfschedule 中保存到 html 文件?

我已经解决了你的问题。这里是存储计划任务的已发布输出的文件的名称。默认情况下,文件只能有 .txt.log 扩展名。您可以在
cfusion\lib\neo-cron xml.

中添加更多扩展

您可以检查xml 文件在字符串标签下只有log,txt。所以你还必须添加 html 。然后也检查 html 个文件。希望它会起作用。谢谢你。