Home >Backend Development >PHP Tutorial >Symfony表单都是后端输出的吗?

Symfony表单都是后端输出的吗?

WBOY
WBOYOriginal
2016-06-06 20:21:561058browse

第一次接触全栈型的PHP框架。对表单都是从后端输出的,比较不好接受。这样的话,前端人员该怎么写前端呢?

回复内容:

第一次接触全栈型的PHP框架。对表单都是从后端输出的,比较不好接受。这样的话,前端人员该怎么写前端呢?

你完全可以自己写表单,匹配框架的要求就可以。

Symfony框架里也提供了很多输出“片段”的模板函数,比如表单里叫name的控件,你可以用{{ form_widget(form.name) }}来输出对应的“”,至于布局等你自定义的代码按你原有习惯来就行。

Form 组件很灵活的,后端只规定输入框的类型,输出支前端页在,至于前端人员怎么样样式,就和后端没一毛钱关系了。

<code class="html">{{ form(form, {'attr': {'novalidate': 'novalidate'}}) }}</code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn