我正在使用此代码在MURA 6.1中的页面内容中显示我的页面
<div>[mura]$.dspInclude('display_objects/custom/main.cfm')[/mura]</div>
但它给了我以下错误:
注意:如果您希望使用绝对模板路径(例如, template =“/ mypath / index.cfm”)使用CFINCLUDE,你必须创建一个 使用ColdFusion Administrator映射路径。或者,你可以 使用每个应用程序设置来指定特定于此的映射 应用程序通过在THIS.mappings中指定映射结构 的Application.cfc。
使用相对路径(例如, template =“index.cfm”或template =“../ index.cfm”)不需要 创建任何特殊映射。因此建议你 尽可能使用CFINCLUDE的相对路径。找不到 包含的模板 /muraWRM/default/includes/display_objects/custom/main.cfm。
物理路径是
[siteid]/default\includes\themes\rescue\display_objects
提前致谢
答案 0 :(得分:0)
这应该有效
<div>[mura]$.dspInclude('themes/rescue/display_objects/custom/main.cfm')[/mura]</div>
您的include正在从includes文件夹中调用,因此您需要包含themes文件夹和rescue文件夹才能找到正确的路径。
为了保持主题的一致性,您可能希望使用Mura的主题名称设置,但我必须要查看它。 如果你可以很难编码,这应该可以正常工作。