我目前正在使用ColdFusion 10/11,而且还是比较新的。 我通常使用PHP / C#进行编码,因此使用脚本语言(如果这就是你所称的那样)来管理XML数据对我来说有点奇怪。如果我可以用PHP重新设计Web应用程序,但不幸的是,现在不能选择。
就平台而言,我不使用Adobe ColdFusion Builder或CF管理员。我正在使用Dreamweaver和CFEclipse。
所以,现在我正在阅读XML文件并检查XML子项是否包含" yes"," no"等,并显示相应的标记。它以前工作正常,但我必须在名为" GNTrained"的XML文件中添加一个新子项。
添加新元素后,仍然说该值为空字符串。我使用" structKeyExists"验证孩子是否存在,但价值仍然是空的。
我还验证了它正在读取正确的XML文件。伟大的ColdFusion引用不再存在于网上(但是,我不确定它们是否确实存在过)所以任何帮助都将不胜感激!
任何想法为什么会这样?
XML位置的其他任何地方都将被委派?
我已尝试多次重复处理,但仍然想知道为什么该值仍为空字符串。我尝试了各种不同的价值观,交换了元素,任何东西和所有东西,以使其发挥作用。
为了我的工作,这是示例代码,而不是我使用的确切代码集。所以,如果我遗漏了任何东西,请告诉我。但是,这是代码中最简单的版本,而且我认为只需要解决此问题。
有3个不同的文件:前端显示文件,查询文件和XML文件。
以下是显示页面的代码:
<cfinclude template="#APPLICATION.root#employee/details/employee-query.cfm" />
<cfoutput>
<cfquery name="get_employee" dbtype="query">
SELECT id,name,GNTrained from session.employeeDetails order by name
</cfquery>
<cfloop query="get_employee">
<cfif tr eq "RowEven">
<cfset tr="RowOdd">
<cfelse>
<cfset tr="RowEven">
</cfif>
<li class="EmployeeRow #tr#" id="company_#get_employee.currentrow#">#htmleditformat(get_employee.name)#
<div id="bfeat_#get_employee.currentrow#" class="Hidden">
<div class="employeeGroup" style="width:371px;">
<ul class="EmpTrainingList">
<li>BBTrained:
<cfif get_employee.BBTrained contains "YES">
<span class="yes">#get_employee.BBTrained#</span>
<cfelse>
<span class="no">#get_employee.BBTrained#</span>
</cfif>
</li>
<li>GNTrained:
<cfif structKeyExists( get_employee, "GNTrained" )>
<span style="color: red;"><strong>EXISTS! </strong></span>
<cfelse> DOES NOT EXIST!
</cfif>
<cfif get_employee.GNTrained contains "YES">
<span class="yes">#get_employee.GNTrained#</span>
<cfelseif get_employee.GNTrained contains "In Progress">
<span class="in-progress">#get_employee.GNTrained#</span>
<cfelseif get_employee.GNTrained eq "">
<span class="no">EMPTY</span>
<cfelse>
<span class="no">#get_employee.GNTrained#</span>
</cfif>
</li>
</ul>
</div>
</div>
</li>
</cfloop>
</cfoutput>
以下是查询的代码:
<cffile action="read" file="#ExpandPath('#application.root#cf_test/employeeDetails.xml')#" variable="myxml">
<cfset mydoc = XmlParse(myxml)>
<cfset apps = mydoc.data.XmlChildren>
<cfset size = ArrayLen(apps)>
<cfset session.employeeDetails = QueryNew("employee_id,employee_name,GNTrained") >
<cfset temp = QueryAddRow(session.employeeDetails, #size#)>
<cfloop index="i" from = "1" to = #size#>
<cfloop index="x" from="1" to="8">
<cfset attr_name = REReplace(#mydoc.data.employees[i].XMLChildren[x].xmlName#, "[^a-zA-Z0-9__]", "", "ALL") />
<cfset temp = QuerySetCell(session.employeeDetails, "#attr_name#",
#mydoc.data.employees[i].XMLChildren[x].xmlText#, #i#)>
</cfloop>
</cfloop>
<cfcatch>Error loading</cfcatch>
</cftry>
</cfoutput>
这是XML文件:
<!---- File Name: employeeDetails.xml ---->
<?xml version="1.0" encoding="utf-8" ?>
<data>
<employees>
<name>John Smith</name>
<id>1234</id>
<BBTrained>NO</BBTrained>
<DEPT>21</DEPT>
<EXP>12</EXP>
<current>YES</current>
<Status>ACTIVE</Status>
<StateCode>CO122</StateCode>
<GNTrained>NO</GNTrained>
</employees>
<employees>
<name>Mary Chapman</name>
<id>3344</id>
<BBTrained>YES</BBTrained>
<DEPT>21</DEPT>
<EXP>18</EXP>
<Status>LOA</Status>
<StateCode>DE255</StateCode>
<GNTrained>YES</GNTrained>
</employees>
<employees>
<name>Alex Fisher</name>
<id>6655</id>
<BBTrained>NO</BBTrained>
<DEPT>22</DEPT>
<EXP>6</EXP>
<Status>ACTIVE</Status>
<StateCode>ME255</StateCode>
<GNTrained>YES</GNTrained>
</employees>
</data>
更新后的代码 - 现在包括cfloop。(4/20/16)
**解决方案:**在SpliFF的帮助下,我找到了问题。严重的是我遇到的最容易修复的问题之一。在查询页面上的以下代码中:
我需要改变&#34; 8&#34;至&#34; 9&#34;考虑新元素。是的......这真的是一个很小的变化。 叹息
答案 0 :(得分:2)
在构建查询时,您只将temp设置为第1行,因为QueryAddRow位于循环之外。您需要它指向每个XML子项上的当前行:
<cfloop index="i" from = "1" to = #size#>
<cfset temp = QueryAddRow(session.employeeDetails)>
<cfloop index="x" from="1" to="#ArrayLen(mydoc.data.employees[i].XMLChildren)#">
<cfset attr_name = REReplace(#mydoc.data.employees[i].XMLChildren[x].xmlName#, "[^a-zA-Z0-9__]", "", "ALL") />
<cfset QuerySetCell(session.employeeDetails, "#attr_name#",
#mydoc.data.employees[i].XMLChildren[x].xmlText#, #i#)>
</cfloop>
</cfloop>