我正在尝试使用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。