json 字符串中的 MODx MIGX 变量
我在 where-json-string 中使用变量时遇到了一些问题。 我正在另一个 MIGX getImageList 模板内运行 MIGX getImageList 。
[[getImageList?
&tvname=`migxProducts`
&where=`{"productGroupName:=":"[[+productGroupName]]","productItemType:=":"product"}`
&tpl=`migxProductsListRowTpl`]]
似乎是 [[+productGroupName]] 打破了这一切。我需要在 where 字符串中使用该变量。
有什么问题的线索或者是否有解决方案?
提前致谢。
I have a little problem with using a variable inside the where-json-string.
I'm running a MIGX getImageList inside an other MIGX getImageList -template.
[[getImageList?
&tvname=`migxProducts`
&where=`{"productGroupName:=":"[[+productGroupName]]","productItemType:=":"product"}`
&tpl=`migxProductsListRowTpl`]]
It seems that it's the [[+productGroupName]] that breaks it all. I need to use that variable in the where string.
Any clue of what's wrong or if there's a solution?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您如何获取您的
productGroupName
变量?我认为您可能正在混合
MODX
标签。如果当前资源是电视机,您可能需要使用
[[*productGroupName]]
。如果它是从
getResources
调用中提取的,您可能需要确保前缀为空(使用参数getResources?... &tvPrefix=
)或使用默认前缀:[[+tv.productGroupName]]
。我希望这会有所帮助。
How are you grabbing your
productGroupName
variable ?I think you might be mixing
MODX
tags.If it's a TV set on the current resource, you might want to use
[[*productGroupName]]
.If it's pulled from a
getResources
call, you might want to either make sure the prefix is empty (with the parametergetResources?… &tvPrefix=
) or use the default prefix:[[+tv.productGroupName]]
.I hope that will help.