Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Zend 框架 1.12 上使用 News 创建新站点,我只需要从其中添加一些内容到我的主页,并且我有一个表单供管理员添加新闻,我怎样才能实现它并使标记来自所有必须的新闻成为可能在我的主页上显示?
选项 1:在您的新闻控制器中创建一个新操作以仅返回 5 个最近的新闻。
选项 2:在您的数据库表中为标题为“display_on_home_page”的新闻创建一个列,并执行一个操作,该操作将返回具有标志“display_on_home_page”== true 的新闻。在提交新闻的表单中添加一个复选框,将“display_on_home_page”标志设置为 true 或 false。
希望这可以帮助 :)