我的 cfml 代码有问题。该ListAppend()
功能似乎不起作用。
这是我的 .cfm 页面中的代码:
<cfset fruitList="apple, orange, banana">
<cfoutput>
fruitList before: #fruitList#<br>
</cfoutput>
<cfset temp = ListAppend(fruitList, "kiwi")>
<cfoutput>
fruitList after: #fruitList#<br>
</cfoutput>
但我总是得到这个输出:
之前的水果清单:苹果、橙子、香蕉
之后的水果列表:苹果、橙子、香蕉
ListPrepend()
和也是如此ListInsertAt()
。为什么会这样?
任何帮助表示赞赏。