我有一个.html格式的动态创建表,我想以.cfm形式插入。我需要循环遍历动态创建的表的行,并在SQL Server中的表中执行INSERT。此外,该表是用JavaScript创建的。感谢。
<cfoutput>
<cfloop from="1" to="#ArrayLen(tblSample)#" index="i">
<cfquery name="AppendForm" datasource="TestSource">
INSERT INTO tblGrand
(GrandNum,
GrandName,
County,
VersionType,
VersionNum,
SectCode,
Comments,
Provider,
TypeID,
SubmitDate)
Select
<cfif isdefined("form.GrandNum")>
'#GrandNum#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.GrandNme")>
'#GrandNme#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.selCnty")>
'#selCnty#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.VersionType")>
'#VersionType#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.VersionNum")>
'#VersionNum#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.SectCode[i]")>
'#SectCode[i]#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.txtComments[i]")>
'#textComments[i]#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.txtProvider[i]")>
'#txtProvider[i]#',
<cfelse>
null,
</cfif>
<cfif isdefined("form.selType[i]")>
'#selType[i]#',
<cfelse>
null,
</cfif>
'#DateFormat(Now(),"yyyy-mm-dd") &" "& TimeFormat(Now(),"HH:mm:ss")#'
</cfquery>
</cfloop>
</cfoutput>
这是我创建表格的html代码:
<script language="javascript" type="text/javascript">
function addRow() {
var tbl = document.getElementById('tblSample');
var lastRow = tbl.rows.length;
var iteration = lastRow;
var row = tbl.insertRow(lastRow);
// left cell
var cellLeft = row.insertCell(0);
var textNode = document.createTextNode(iteration-3);
cellLeft.appendChild(textNode);
// select cell
var cellRightSel = row.insertCell(1);
var sel = document.createElement('select');
sel.name = 'sectCode' + iteration;
sel.id = 'sectCode' + iteration;
sel.options[0] = new Option('---Any---', '0');
sel.options[1] = new Option('Level 0.5: test1, '1');
sel.options[2] = new Option('Level I: test2', '2');
sel.options[3] = new Option('Level I.D: test3', '3');
sel.options[4] = new Option('Level II.1: test4', '4');
sel.options[5] = new Option('Level II.5: test5', '5');
cellRightSel.appendChild(sel);
var cellRights = row.insertCell(2);
var els = document.createElement('input');
els.type = 'text';
els.name = 'txtComments' + iteration;
els.id = 'txtComments' + iteration;
els.size = 20;
cellRights.appendChild(els);
var cellRight = row.insertCell(3);
var el = document.createElement('input');
el.type = 'text';
el.name = 'txtProvider' + iteration;
el.id = 'txtProvider' + iteration;
el.size = 20;
cellRight.appendChild(el);
var cell7 = row.insertCell(8);
var sel5 = document.createElement('select');
sel5.name = 'selType' + iteration;
sel5.id = 'selType' + iteration;
sel5.options[0] = new Option('---Any---', '---Any---');
sel5.options[1] = new Option('Fees, 'Fees);
sel5.options[2] = new Option('Reimbursement', 'Reimbursement');
cell7.appendChild(sel5);
}
答案 0 :(得分:2)
您需要使用VALUES
插入数据库。您还应该使用structKeyExists
而不是isDefined
,并且您也应该使用cfqueryparam
。我也会对变量进行调整。
<cfloop from="1" to="#ArrayLen(tblSample)#" index="i">
<cfquery name="AppendForm" datasource="TestSource">
INSERT INTO tblGrand
(GrandNum,
GrandName,
County,
VersionType,
VersionNum,
SectCode,
Comments,
Provider,
TypeID,
SubmitDate)
VALUES (
<cfif structKeyExists(form,"GrandNum")>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.GrandNum#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"GrandNme")>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.GrandNme#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"selCnty")>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.selCnty#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"VersionType")>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.VersionType#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"VersionNum")>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form.VersionNum#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"SectCode"&i)>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form['SectCode'&i]#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"txtComments"&i)>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form['textComments'&i]#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"txtProvider"&i)>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form['txtProvider'&i]#">,
<cfelse>
NULL,
</cfif>
<cfif structKeyExists(form,"selType"&i)>
<cfqueryparam cfsqltype="cf_sql_varchar" value="#form['selType'&i]#">,
<cfelse>
NULL,
</cfif>
<cfqueryparam cfsqltype="cf_sql_timestamp" value="#Now()#">)
</cfquery>
</cfloop>
答案 1 :(得分:1)
首先,你的问题是什么?你收到错误了吗?您现在得到了什么结果 - 它们与您的预期有何不同?
在不了解您的表单/数据结构的情况下,我通常建议在这种情况下使用唯一的表单字段名称。对多个字段使用相同的名称时,字段值将以逗号分隔列表的形式提交。当值本身包含逗号时,这可能会导致问题,因为无法确定一个值的结束位置和另一个值的开始位置。
要创建唯一的字段名称,请让您的javascript为每个 set 字段添加一个计数器编号。因此字段将命名为:
然后将总数存储在隐藏字段中。在您的操作页面上,执行一个简单的from / to循环。如果需要,使用cfparam
为可能不存在的任何字段设置默认值,如复选框或单选按钮(文本字段始终存在)。然后,您可以使用null
cfqueryparam
属性,该属性比isDefined
或structKeyExists
IMO更清晰。
<cfparam name="FORM.totalFields" default="0">
<cfloop from="1" to="#FORM.totalFields#" index="i">
<!--- extract current set of values --->
<cfset variables.txtComments = TRIM( FORM["txtComments"& i] )>
<cfset variables.sectCode = TRIM( FORM["sectCode"& i] )>
...
<cfquery name="AppendForm" datasource="TestSource">
INSERT INTO tblGrand (Comments, SectCode ....)
VALUES
(
<cfqueryparam cfsqltype="cf_sql_varchar" value="#variables.txtComments#" null="#not len(variables.txtComments)#">
, <cfqueryparam cfsqltype="cf_sql_varchar" value="#variables.sectCode#" null="#not len(variables.sectCode)#">
...
)
</cfquery>
</cfloop>
更新:
根据您的更新,您现有的代码非常接近我上面描述的内容。您只需添加隐藏字段,并在每次添加行时更新它。那么上面的cfloop代码应该可以正常工作。
function addRow() {
// removed extra variables
var tbl = document.getElementById('tblSample');
var row = tbl.insertRow(tbl.rows.length);
// use hidden value to calculate total fields
var iteration = parseInt(document.getElementById('totalFields').value) + 1;
var cellLeft = row.insertCell(0);
var textNode = document.createTextNode(iteration);
... etcetera ...
// save new total
document.getElementById('totalFields').value = iteration;
}
...
<input type="hidden" id="totalFields" name="totalFields" value="0" />
更新:
其他一些评论
cfoutput
。变量将自动评估cfqueryparam
以防止sql注入。特别是在循环时。 cfqueryparam
使用可以"enhance performance when executing a cfquery statement multiple times.“DateFormat
。它专为演示而设计并返回一个字符串。根据您的数据库设置,日期字符串可能会被误解释。为避免歧义,请始终插入日期/时间对象,例如now()
而不是字符串。请参阅Matt's example及其对now()
的使用情况。 答案 2 :(得分:0)
这是另外两个答案的补充。我将其限制为前面未提到的两个主题。
首先,有时将循环放在查询中而不是在循环中查询是更有效的。细节取决于您的数据库,但一种通用的方法是这样的:
insert into yourtable
(field1, field2, etc)
select null, null, etc
from SomeSmallTable
where 1 = 3
<cfloop>
union
select #value1#, #value2#, ect
from somesmalltable
</cfloop>
在sql server中你不需要“from SomeSmallTable”。在mysql中,您可以使用values关键字并仍然使用循环。
由于各种原因,此方法不适用于大量记录,但可能值得继续使用。
接下来,您可能需要与空白表单字段竞争。对于数字和日期字段尤其如此,您不能简单地插入空字符串。好消息是cfqueryparam有一个null属性。以下是日期数据类型
的示例<cfqueryparam = cfsqltype="cf_sql_date" value="#something#"
null = "#not isDate(something)#">
由于isDate在空字符串上返回false,这将导致将空值插入到日期字段中,而不是使查询崩溃。