我有一个简单的"购物车"由用户更新的RFQ。他们阵列工作正常,附加工作良好。但由于某种原因,我似乎无法正确地将数据输出到表中。我的循环计数器正在工作,如果这是重要的:)请看下面我的代码,然后输出我想要开始工作我知道这很简单,我想过它。
由于
<cfif isDefined("url.Series")>
<cfset arrayAppend( session.cart, {Series = URL.Series , Style = URL.Style , Ohm = URL.Ohm , Notes = URL.Notes} )>
</cfif>
<a href="cleararray.cfm">Clear Array</a><br />
<a href="Stylesearch.cfm">Style Search</a><br /><br />
<h1><b>DEBUG:</b></h1>
<!--- Display current contents of cart --->
<cfdump var="#session.cart#" label="Cart Items">
<br />
<!--- Display items in cart in Table format --->
<table class="tftable" border="1">
<tr>
<th>Series</th>
<th>Style ID</th>
<th>Exact Ω</th>
<th>Description</th>
<th>Notes</th>
<th>Quantity</th>
<th>Update</th>
<th>Delete</th>
</tr>
<cfloop index="Series" from="1" to="#arraylen( session.cart )#">
<tr>
<td>#session.cart[Series]#</td>
<td>#Style#</td>
<td>#Ohm#</td>
<td>Test Description</td>
<td>#Notes#</td>
<td>Test Quantity</td>
<td>X</td>
<td>^</td>
</tr>
</cfloop>
</table>
{{3}}
答案 0 :(得分:1)
您只需要使用cfoutput包装cfloop。
<cfoutput>
<cfloop index="Series" from="1" to="#arraylen( session.cart )#">
<tr>
<td>#session.cart[Series]#</td>
<td>#Style#</td>
<td>#Ohm#</td>
<td>Test Description</td>
<td>#Notes#</td>
<td>Test Quantity</td>
<td>X</td>
<td>^</td>
</tr>
</cfloop>
</cfoutput>
就个人而言,我也会将循环索引更改为与“系列”不同,因为稍后可能会因购物车结构中的系列键而混淆。
输出session.cart[Series]
中的第一个单元格将是购物车中的第一个结构,而我认为你想要的是:
session.cart[Series].Series
。
这就是我将循环索引更改为s
的原因,例如:
<cfoutput>
<cfloop index="s" from="1" to="#arrayLen( session.cart )#">
<cfset thisRow = session.cart[s] />
<tr>
<td>#thisRow.Series#</td>
<td>#thisRow.Style#</td>
<td>#thisRow.Ohm#</td>
<td>Test Description</td>
<td>#thisRow.Notes#</td>
<td>Test Quantity</td>
<td>X</td>
<td>^</td>
</tr>
</cfloop>
</cfoutput>
希望有所帮助。