cakePHP框架需要添加AI模板
我有一个为此页面设计的人工智能模板,但不确定我是否需要前端人员或后端人员来使用蛋糕框架建立从设计到实际实时页面的桥梁...我知道有一些文档在使用 cake 的模板上,我们是否正常地将其切片,然后将内容添加到框架中?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个为此页面设计的人工智能模板,但不确定我是否需要前端人员或后端人员来使用蛋糕框架建立从设计到实际实时页面的桥梁...我知道有一些文档在使用 cake 的模板上,我们是否正常地将其切片,然后将内容添加到框架中?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
CakePHP 与其他 Web 框架一样,有一个模板系统,分为几个部分(在 Cake Manual 的视图页面):
我承认我对 CakePHP 没有做太多的事情,但是这些概念在许多框架中都是相似的。
分割时,您需要记住不同类型的模板。将常见元素分割成布局模板。将特定于操作的部分分割成小的视图模板,旨在插入到布局模板中。将常见的动态元素切片为助手/元素模板。
具有前端经验的人将能够创建模板,但您需要具有后端的人员拥有创建控制器(无论您的网站做什么的代码)并将所有内容联系在一起的经验。
CakePHP, like may other web frameworks, has a template system that divided into a few sections (find out more at the Cake Manual's View page):
I'll admit that I don't do much with CakePHP, but these concepts are similar across many frameworks.
When slicing you'll need to keep the different kinds of templates in mind. Slice up the common elements into a Layout Template. Slice up the action specific portions into small View Templates designed to be inserted into the Layout Template. Slice common dynamic elements into Helper/Element Templates.
Someone with front end experience will be able to create the templates, but you'll need someone with backend experience to create the Controllers (the code that does whatever it is your site does) and tie everything together.
蒂姆所说的,以及:这里基本上有两个步骤。一是将 AI 文档转换为良好的、明智构建的 HTML。对于不一定了解 Cake 的 Web/界面设计师来说,这很可能是一项任务。
然后您需要有人将该 HTML 结构制作成 Cake 模板。这很可能是了解 Cake 的程序员的任务,但不一定是成熟的 Web/界面设计师。
网页设计师和蛋糕模板制作者可以是同一个人;无论如何,他们应该保持密切联系。 Cake 人员将为 HTML 人员提供输入,这将从一开始就影响工作。
What Tim says, and: You basically have two steps here. One is converting the AI document into good, wisely built HTML. This is most likely a task for a web/interface designer who does not necessarily know Cake.
Then you need somebody to make that HTML structure into a Cake template. This is most likely a task for a programmer who knows Cake, but is not necessarily a full-blown web/interface designer.
The web designer and the cake template maker can be the same person; Anyway, they should be in close contact. The Cake person will have input for the HTML person that will influence the work from the start.