cakePHP框架需要添加AI模板

发布于 2024-08-20 12:08:59 字数 114 浏览 7 评论 0 原文

我有一个为此页面设计的人工智能模板,但不确定我是否需要前端人员或后端人员来使用蛋糕框架建立从设计到实际实时页面的桥梁...我知道有一些文档在使用 cake 的模板上,我们是否正常地将其切片,然后将内容添加到框架中?

I have an AI template that was designed for this page but not sure if i need a front end person or a back end person to make the bridge from design to an actual live page using the cake framework... i know there is some documentation on templates using cake, do we slice it up normally and then just add the content to the framework?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

原来分手还会想你 2024-08-27 12:08:59

CakePHP 与其他 Web 框架一样,有一个模板系统,分为几个部分(在 Cake Manual 的视图页面):

  • 布局:这些是构成页面基本布局的模板。
  • 视图模板:这些模板(通常)与 MVC 设计模式中采取的特定操作相匹配。例如,可能存在用于编辑博客文章和用于显示博客文章的视图。这些视图模板被注入到布局模板的特定部分中。
  • 元素与元素助手:注入视图模板或布局模板的特定部分的可重用模板。 “作者”模板可以插入到文章视图模板中,或者可以在布局模板的一部分中显示登录框。

我承认我对 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):

  • Layouts: These are templates that makeup the basic layout of the page.
  • View Templates: These templates (usually) match a specific action that is taken in the MVC design pattern. For example there may be a view for editing a blog post, and for displaying a blog post. These View templates are injected into a specific section of the Layout template.
  • Elements & Helpers: Reusable templates that are injected into View templates, or specific sections of the Layout template. An 'author' template may be inserted into an article View template, or a login box may be displayed in a section of the Layout template.

I'll admit that I don't do much with CakePHP, but these concepts are similar across many frameworks.

do we slice it up normally and then just add the content to the framework

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.

not sure if i need a front end person or a back end person to make the bridge from design to an actual live page using the cake framework

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.

反差帅 2024-08-27 12:08:59

蒂姆所说的,以及:这里基本上有两个步骤。一是将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文