2

我正在尝试使用一个简单的组件来使用 ColdFusion v 10(最新更新)添加、清除和删除集合 - 当我使用 ColdFusion 管理员时,我在创建、清除或删除时没有问题。当我调用函数来创建集合时,它可以工作。当我调用该函数来清除或删除同一个集合时,什么也没有发生。有什么想法吗?

以下是组件:

<cffunction name="purgeCollection" access="public" returntype="query" returnFormat="JSON" >
    <cfargument name="collectionName" type="varchar" required="true" >

    <cfindex action="purge" collection="#arguments.collectionName#" status="qStat"  >

    <cfreturn qStat>

</cffunction>

<cffunction name="removeCollection" access="public" returntype="void" >
    <cfargument name="collectionName" type="varchar" required="true" >

    <cfcollection action="delete" collection="#arguments.collectionName#" >

    <cfreturn>

</cffunction>
4

0 回答 0