Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想暂时将 cfdump 的输出存储为字符串。我知道有一种方法可以将它存储在一个文件中,但是有没有一种方法可以让我获得相当于cfdump format='text'?
cfdump format='text'
使用 cfsavecontent 对您有用吗?
<cfsavecontent variable="theDump"> <cfdump var="#cgi#" expand="yes" format="text"> </cfsavecontent> <cfoutput> #theDump# </cfoutput>
shaunw 的想法是对的。为了获得额外的模块化,将其放入您自己的自定义标签或组件函数中,以便您可以在整个应用程序中重复使用它