如何在 CFWheels 上重新加载模型方法?

How to reload Model methods on CFWheels?

我有这样一个模型:

<cfcomponent extends="Model">
<cffunction name="init">

</cffunction>

<cffunction name="config">
   ...
</cffunction>

<cffunction name="getLogsEncuestas">
    <cfreturn ...>
</cffunction>

我正在创建 getLogsEncuestas 方法,但每次对其进行更改时,我都必须重新启动 PC 才能完成更新。

我在 ColdFusion 服务器中使用 CFWheels。我尝试在 box 命令行中使用 wheels reload 并将环境更改为开发环境。

知道如何在不重启服务器的情况下重新加载模型方法吗?

感谢您的帮助!

我已经很久没有用 CFWheels 做任何事情了,但是 /?reload=true 是我过去使用的。你试过了吗?