cakephp 多个查找条件
我想使用 CakePHP Find All 结果查找多个条件并匹配 HABTM 表中的更多条件,我想再次使用更多应用/更改的参数搜索结果。
那么有什么想法或更好的方法建议来做同样的事情吗?
会欣赏您的想法/观点。
谢谢 !
I want to find with multiple conditions using CakePHP Find All results and matching some more conditions from HABTM table, I want to again search the result with more applied / changed parameters.
So any idea, or a better way suggestions for doing the same?
Will Appreciate your ideas/views.
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iamtheladylegend,
您只需根据本书设置您的 findall 即可。返回查找结果后,您将获得表单中的数据,您可以像生成的
edit()
一样使用该数据。现在,您更改搜索参数并使用已获得的输出作为新输入重新发送。iamtheladylegend,
You would simply set up your findall according to the book. Once your find is returned, you have data in a form, which you can use exactly as a generated
edit()
does. Now you change the search parameters and re-send with the already obtained output as new input.