我尝试在我的 CFIDE 管理员中将目录注册为 REST 应用程序:
注册 REST 服务时出错。请确保您输入了正确的映射和路径。无法初始化应用程序服务。原因:应用程序不包含任何启用了休息的 CFC。该应用程序不包含任何启用了 REST 的 CFC。
我的目录包含:
应用程序.cfc
component output="false"
{
this.name = "otticanet-rest";
this.applicationTimeout = createTimespan(0,1,0,0);
this.datasource = "svvv";
this.restsettings.skipCFCWithError = true;
public boolean function onRequestStart()
{
return true;
}
}
产品.cfc
<cfcomponent rest="true" restpath="occhiali">
<cffunction name="getByMarchioAndTipo"
access="remote"
httpmethod="GET"
restpath="{idmarchio}/{idtipo}"
returntype="Struct"
produces="application/json">
<cfargument name="marchio" required="true" restargsource="Path" type="numeric" />
<cfargument name="tipo" required="true" restargsource="Path" type="numeric" />
<cfreturn LOCAL.s />
</cffunction>
...
所以呢?
此外,这在一个月前有效。会发生什么?