太妃糖API框架补丁动词不适用于lucee

时间:2017-09-01 12:39:14

标签: api coldfusion lucee taffy

我在补丁动词

中创建了一个非常脆弱的API端点

我会运行探索以抛出以下错误

补丁动词在ACF中工作稳定但在lucee中不起作用

  

我的lucee版本 - > Lucee 4.5.4.017 final

任何人都让我知道如何解决这个问题

enter image description here

mycode的:

<cfcomponent extends="taffy.core.resource" taffy_uri="/artist/">

    <cfset variables.dummyData = StructNew() />
    <cfset variables.dummyData.whatever = true />
    <cfset variables.dummyData.phone = encode.string(5558675309) />
    <cfset variables.dummyData.phoneNumeric = 5558675309 />

    <cffunction name="patch" access="public" output="false">
        <cfreturn representationOf(variables.dummyData).withStatus(200) />
    </cffunction>

</cfcomponent>

0 个答案:

没有答案