Application.cfm中的sameformfieldsasarray

时间:2017-05-27 15:56:39

标签: arrays coldfusion coldfusion-11 application.cfm

我正在使用旧版应用程序并且他们正在使用Application.cfm,现在该文件无法转换为Application.cfc,因为该网站太大并且可能进行更改会使其不稳定

在其中一个页面中,我将表单字段定义为:keys[]以返回一个数组。我已经定义了

<cfset this.sameformfieldsasarray = "true">

cfapplication标记

下的Application.cfm中

但这似乎不起作用,它只是创建列表而不是数组。

所以问题是:

  1. 我该如何使用该功能?
  2. 如果我不能在Application.cfm中使用该功能,是否还有其他方法可以在页面中使用它只有我需要将表单值作为数组
  3. 我正在使用coldfusion版本11

1 个答案:

答案 0 :(得分:0)

我认为您将值设置为字符串而不是布尔值

<cfset this.sameformfieldsasarray = "true">

应该是

<cfset this.sameformfieldsasarray = true>

另请考虑使用application.cfc