在 smartyy 中按行获取数据?
我用来
{foreach from=$fields_array item=v}
从表“字段”中获取 可以获取特定类型,就像
{if ($listing[$v.caption] || $v.type=="checkbox" || $listing[$v.depending.caption1] || $listing[$v.depending.caption2] || $listing[$v.depending.caption3] || $listing[$v.depending.caption4] ) && $v.type!='price' && $v.type!='checkbox_group' && $v.type!='youtube' && $v.type!='htmlarea' && $v.type!='textarea' && $v.type!='google_maps' && (($v.caption!='make' && $v.caption!='model') || $data_set!="cars")}
我想获取特定行一样..如何做到这一点?
I use
{foreach from=$fields_array item=v}
to fetch from the the table "fields"
the specific types can be fetched like
{if ($listing[$v.caption] || $v.type=="checkbox" || $listing[$v.depending.caption1] || $listing[$v.depending.caption2] || $listing[$v.depending.caption3] || $listing[$v.depending.caption4] ) && $v.type!='price' && $v.type!='checkbox_group' && $v.type!='youtube' && $v.type!='htmlarea' && $v.type!='textarea' && $v.type!='google_maps' && (($v.caption!='make' && $v.caption!='model') || $data_set!="cars")}
I want to fetch specific rows..how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以做的是循环并仅显示符合您条件的行...但这通常被认为是一个坏主意。
如果您想过滤表示层之外的行(强烈建议这样做),请修改原始变量分配的填充方法中的数据。不要尝试在 smarty 中这样做。
What you can do is loop through and display only the rows that match your criteria... but this is generally considered a bad idea.
If you want to filter rows outside of the presentation layer (which is highly advisable) modify the data in your population method of the original variable assignment. Don't try to do that in smarty.