gpt4 book ai didi

arrays - Coldfusion - 将数组放入数据库

转载 作者:行者123 更新时间:2023-12-02 04:28:13 24 4
gpt4 key购买 nike

我正在尝试从一个网站提取数据以插入到 Coldfusion 中另一个网站的数据库中 - 已将数据获取到第二个网站 - 并研究了我能在 Coldfusion struct 命令上找到的所有文档,我似乎只是去绕圈 -

这只是一个简单的数组,我想上传到一个表中 - 两个网站的表是相同的 -

显然我需要一个非常简单的分步说明来了解如何将数据转换为可以上传到第二个数据库的值 - 有人可以帮忙吗

这是我用来获取数据的代码 - 以及结果的图像 - 如果图像未显示网址为 http://www.tectrics.com/english/map/getjson.cfm

<cfset urlAddress="http://www.tectrics.com/english/map/localjson.cfm">
<cfhttp url="#urlAddress#" method="GET" resolveurl="Yes" throwOnError="Yes"/>
<cfset meetlist=DeserializeJSON(CFHTTP.FileContent)>
<cfdump var="#meetlist#">

数组图像

最佳答案

你有了一个良好的开端。变量 meetlist 的内容包含一个结构体数组。因此,您需要做的就是循环遍历结构数组并为每个数组元素执行插入。在现有代码的基础上构建,这就是您所需要的。

此代码示例的一些改进应该有 <cftry> , <cfcatch><cftransaction> block ,但这应该足以让您开始。

<cfset urlAddress="http://www.tectrics.com/english/map/localjson.cfm">
<cfhttp url="#urlAddress#" method="GET" resolveurl="Yes" throwOnError="Yes"/>
<cfset meetlist=DeserializeJSON(CFHTTP.FileContent)>
<cfdump var="#meetlist#"> <!--- Remove this dump --->

<cfloop array="#meetlist#" index="i">
<!--- each loop iteration will contain a struct called "i". Do an insert for each iteration of the loop --->
<cfquery datasource="mydatasource">
INSERT INTO table_name (
attended,
childcare,
childfriend,
...
)
VALUES (
<cfqueryparam value="#i.attended#" cfsqltype="cf_sql_integer">, <!--- use the appropriate cfsqltype that matches the column's data type --->
<cfqueryparam value="#i.childcare#" cfsqltype="cf_sql_varchar">, <!--- use the appropriate cfsqltype that matches the column's data type --->
<cfqueryparam value="#i.childfriend#" cfsqltype="cf_sql_varchar">, <!--- use the appropriate cfsqltype that matches the column's data type --->
...
)
</cfquery>
</cfloop>

关于arrays - Coldfusion - 将数组放入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60573827/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com