dongqintong8972 2016-04-14 02:33
浏览 64
已采纳

Twig / Symfony表单模板语法

I'm trying to modify someone else's website setup (a Craft CMS with a Laravel plugin) but I can't decipher the syntax of this Twig form, I was hoping someone more familiar with Twig/Symfony form templating could tell me what's going on or point me to the right documentation.

Specifically, I have a variable I want to render as a placeholder in an input. So {{ myvariable }} should be <input type="text" placeholder="{{ myvariable }}" ..., but I'm unfamiliar with how the inputs are being rendered.

Here's what's in the Twig template:

{% include "dir/content_type/_field" with {
   control: { handle: 'location_address_1', value: 'address_1'},
    element: content_type,
    errors: errors is defined ? errors : null
 } only %}

The _field I assume is a nearby html template, which has:

{% set field = craft.fields.getFieldbyHandle(control['handle']) %}
{% set fieldtype = craft.fields.populateFieldType(field, element) %}
{% set value = element ? element[control['value']] : null %}
{% set required = required is defined ? required : false %}
{% set input = fieldtype.getInputHtml(field.handle, value) %}
{% set label = no_label is defined and no_label ? '' : field.name|t|e%}
{% set errors = errors is defined and errors[control['value']] is defined ?     errors[control['value']] : null %}
{% include "_includes/forms/field" with {
  label: label,
  id: field.handle,
  errors: errors,
  input: input,
  required: required
} only %}

Any insight is appreciated.

  • 写回答

1条回答 默认 最新

  • douzhulv1699 2016-04-14 08:13
    关注

    The _field template is setting some parameters for the field based on the initial include call. The _field processes some of those parameters and then calls the _includes/forms/field with the processed values and field html in the input variable.

    craft.fields.getFieldbyHandle() gets your field object. The from that object It looks like fieldtype.getInputHtml(field.handle, value)` is generating the actual HTML for the input. So you need to find where getInputHtml is defined and pass through your placeholder to there. Change that function to build the html with you placeholder attribute.

    Something like so

    final template

    {% include "dir/content_type/_field" with {
        control: { handle: 'location_address_1', value: 'address_1', placeholder: "[Place holder value]"},
        element: content_type,
        errors: errors is defined ? errors : null     
     } only %}
    

    _field

    ...
    {% set input = fieldtype.getInputHtml(field.handle, value, control['placeholder']) %}
    

    getInputHTML(handle,value, placeholder)

    <input type="text" placeholder="{{ placeholder }}" ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)