我正在使用旧版应用程序并且他们正在使用Application.cfm,现在该文件无法转换为Application.cfc,因为该网站太大并且可能进行更改会使其不稳定
在其中一个页面中,我将表单字段定义为:keys[]
以返回一个数组。我已经定义了
<cfset this.sameformfieldsasarray = "true">
在cfapplication
标记
但这似乎不起作用,它只是创建列表而不是数组。
所以问题是:
我正在使用coldfusion版本11
答案 0 :(得分:0)
我认为您将值设置为字符串而不是布尔值
<cfset this.sameformfieldsasarray = "true">
应该是
<cfset this.sameformfieldsasarray = true>
另请考虑使用application.cfc