我希望能够通过请求范围变量或其他方式将一些补充信息传递给内容槽。
我在调用 ISML 时尝试过这个:
<isset name="message" scope="request" value="I want to be an Air Force Ranger" />
<isslot id="slot-message" context="global" description="banner"/>
在我拥有的插槽的渲染模板中:
<iscontent type="text/html" charset="UTF-8" compact="true"/>
<iscache type="relative" hour="24"/>
<h3>${request.custom.message}</h3>
但是,在输出 HTML 中,我得到:
<h3>null</h3>
有什么方法可以将对象或字符串传递给内容槽?