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.
我正在为我的应用程序中的组件使用脚本样式编码。ColdFusion 11中是否有任何cfscript等价物?cfimage writeToBrowser还是我需要将我的编码切换到 CFML?
cfscript
cfimage writeToBrowser
如果您使用的是 ColdFusion 11,则有 100% 的标签/脚本奇偶校验。
在您的 cfscript 中,您需要做的就是:
<cfscript> cfimage ( action = "writeToBrowser", source = variables.myCFImage ); </cfscript>