如何获取符号链接在符号链接模板中指向的 id?
这很难解释......
在 modX Revolution 中,我试图在模板中获取符号链接的“Symlink”字段,以便在代码片段中使用它(符号链接指向的 id)。
当我将鼠标悬停在该字段上时的建议是 [[*content]]
,但是在使用它时,我得到了我用符号链接指向的页面的实际内容。
有什么建议吗?该文档没有帮助,我已经用谷歌搜索了一个小时了。
This is pretty hard to explain...
In modX Revolution, I'm trying to get the symlink's "Symlink" field in the template to use it in a snippet (the id the symlink is pointing at).
The suggestion when I mouseover that field is [[*content]]
, but when using that I get the actual content of the page I'm pointing at with the symlink.
Any suggestions? The documentation doesn't help, and I've been google-ing it for an hour now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,这是符号链接的预期行为。
我刚刚在我的测试服务器上启动了一个小测试,结果如下:
getResource(从包管理安装它)没有返回符号链接:
如果 6 是指向 id 为 10 的页面的符号链接的 id:
[[!获取资源? &resources=
6]]
将返回:
请注意,内容键为空。
MODx 论坛上的用户 lkossis 建议另一种方法:使用片段来获取
[[*content]]
值。在您的模板中:
归功于 MODx 论坛上的 lkossis。
http://modxcms.com/forums/index.php/topic ,61784.msg351101.html#msg351101
AFAIK, this is the expected behavior for a symlink.
I just fired up a little test on my testing server and here is the result:
getResource (install it from Package Management) returns no symlink:
If 6 is the id of the symlink pointing to a page with the id of 10:
[[!getResources? &resources=
6]]
will return:
Please note that the content key is empty.
User lkossis on MODx Forums suggests another approach: using a snippet to get the
[[*content]]
value.And in your template:
The credit goes to lkossis on MODx Forums.
http://modxcms.com/forums/index.php/topic,61784.msg351101.html#msg351101