为重复对象实现 MVC
我有几个对象和一个“模板”来显示这些对象:
Name: $name Description: $description Price: $price Picture: $image
由于对象的数量不同,我如何根据 MVC 模式显示这些对象?我应该将模板包装在函数中并为每个对象调用它吗?
I have several objects and a "template" to display these objects in:
Name: $name Description: $description Price: $price Picture: $image
Since the number of objects varies, how can I display these according to the MVC pattern? Should I wrap the template in a function and call it for each object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我误解了这个问题,请对我大喊大叫,但如果我没有,我会创建一个 DisplayItem 类,并让它作为一个模型来插入对象数据,并将 displayItems 的列表或数组交给视图。
please yell at me if I'm misinterpreting the question, but if I'm not, I would create a class DisplayItem, and have it play as a model to plug the object data into, and hand the list or array of displayItems over to the View.