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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵