CFSCRIPT 中的 CFSAVECONTENT

发布于 2024-12-03 05:04:21 字数 207 浏览 0 评论 0原文

我非常喜欢 cfsavecontent,因为我们可以将长文本转换为变量(事件我可以转储到其中)。但最近更多人开始使用 CFSCRIPT,并且不知道如何在 cfscript 标记内使用它。

有什么方法可以在 cfscript 中写入 cfsavecontent 吗?据我所知,没有这样的函数或类可用,并且肯定它也很难实现。

感谢任何反馈。

谢谢 普里泰什

I am good fan of cfsavecontent due to we can convert long text to variable (Event I can dump in it). But recently more started working with CFSCRIPT and can't figure out how to use it inside cfscript tag.

Is there any way to write cfsavecontent inside cfscript. As per my knowledge there is no such function or class available and sure it is pretty hard to implement as well.

Appreciate any feedback.

Thanks
Pritesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

潇烟暮雨 2024-12-10 05:04:21

如果您使用 CF9 和railo,您可以使用 savecontent {}
在此处查看更多信息:

http://www.isummation.com/blog/cfsavecontent-in-cf9- cfscript/

这与您需要使用 writeoutput 来输出项目不太一样。这也可以通过将输出附加到变量来完成。

If you are using CF9 and railo you can use savecontent {}
see more info here:

http://www.isummation.com/blog/cfsavecontent-in-cf9-cfscript/

It's not quite the same as you need to use writeoutput to output the items. This can also done by appending output to a variable.

衣神在巴黎 2024-12-10 05:04:21

以下是 Dawesis 答案 (CF9) 链接页面的答案:

savecontent variable="myVariable" { WriteOutput("Hello World"); }

Here is the answer from the linked page from Dawesis answer (CF9):

savecontent variable="myVariable" { WriteOutput("Hello World"); }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文