我是coldfusion的新手,我在一个函数中循环查询。例如,我有一个函数,其中有一个查询返回以'a'开头的名称。但是我只能从数据库中获取一个值(第一个值)。实际上在db中我们有超过1个值用于此查询。我应该如何在函数中循环查询? 任何帮助表示赞赏...
<cffunction name="getNames" returntype="any">
<cfargument name="letter" required="true">
<cfquery name="getNamesfrmDB" datasource="test">
select * from employee where firstname like '#arguments.letter#%'
</cfquery>
<cfreturn getNamesfrmDB/>
</cffunction>
<cfoutput>#getNames('a').firstname#</cfoutput>
提前致谢...
答案 0 :(得分:2)
稀释。我准备好你的问题了......忽视以前的答案..
您将查询直接传递出函数,因此它将作为查询出现,您可以将其视为此类。
在cfouptut中使用query =“qname”
<cffunction name="getNames" returntype="any">
<cfargument name="letter" required="true">
... your query ..
<cfreturn getNamesfrmDB/>
</cffunction>
<!---call the function--->
<cfset names = getNames('a')>
<!---now loop over the results using cfoutput--->
<cfoutput query="names">
<p>#firstname#</p>
</cfoutput>
<!---OR ALTERNATIVELY, as you can't use cfoutput inside cfoutput.. so if you are already inside a cfouput, you can also output query results using cfloop--->
<cfoutput>
..some other stuff...
<cfloop query="names">
<p>#firstname#</p>
</cfloop>
..some other stuff..
</cfoutput>