Lucee - Coldfusion 新关键字不起作用
Lucee - Coldfusion new keyword not working
我正在尝试使用 new
关键字调用组件,但它不起作用。
下面的方法很好用:
<cfset test = CreateObject("component", "test-objects.shipping_new").init(bar="Blah", foo="boom")>
但是当我尝试使用以下内容时:
<cfset test = New test-objects.shipping_new(bar="Blah", foo="boom") />
我收到错误 tag cfset is not closed
。上面的代码是我试图从中调用它的文件中的第一行,除非我遗漏了一些标签看起来对我关闭的东西。如果有区别,我正在使用 Lucee 4.5。
问题是 hyphen:
If the folder name or CFC name has hyphen, use the following syntax:
cfObject=new "cfc-path"(constructorParam1,...)
我正在尝试使用 new
关键字调用组件,但它不起作用。
下面的方法很好用:
<cfset test = CreateObject("component", "test-objects.shipping_new").init(bar="Blah", foo="boom")>
但是当我尝试使用以下内容时:
<cfset test = New test-objects.shipping_new(bar="Blah", foo="boom") />
我收到错误 tag cfset is not closed
。上面的代码是我试图从中调用它的文件中的第一行,除非我遗漏了一些标签看起来对我关闭的东西。如果有区别,我正在使用 Lucee 4.5。
问题是 hyphen:
If the folder name or CFC name has hyphen, use the following syntax:
cfObject=new "cfc-path"(constructorParam1,...)