5

Deform がレンダリング時にフィールド タイトルまたは説明で HTML をエスケープするのをどのように停止しますか? 私の現在の最善の解決策は、返されたレンダリングされた HTML 文字列を必要なもので検索/置換することです。

Deform はデフォルトですべての HTML 文字を HTML エンティティにエスケープします。フィールドの説明の 1 つにタグを追加したいと考えています。

4

1 に答える 1

3

デフォルトのウィジェット テンプレートをコピーし、エスケープされていないエントリを許可するように変更します。

説明は によって配置されmapping.ptます。ウィジェットごとにオーバーライドすることはできません。マッピング テンプレートは、フォーム内のすべてのアイテムで同じです。item_templateウィジェット コンテナー (フォーム、フォーム セクション) に渡すことで、マッピングをオーバーライドできます。テストされていない例:

  # No .pt extension for the template!
  schema = CSRFSchema(widget=deform.widget.FormWidget(item_template="raw_description_mapping"))

TALstructure式を使用して HTML をアンエスケープできます。

たとえばraw_description_mapping.pt変形 2 の例:

<tal:def tal:define="title title|field.title;
                     description description|field.description;
                     errormsg errormsg|field.errormsg;
                     item_template item_template|field.widget.item_template"
         i18n:domain="deform">

  <div class="panel panel-default" title="${description}">
    <div class="panel-heading">${title}</div>
    <div class="panel-body">

      <div tal:condition="errormsg" 
           class="clearfix alert alert-message error">
        <p i18n:translate="">
           There was a problem with this section
        </p>
        <p>${errormsg}</p>
      </div>

      <div tal:condition="description">
        ${structure: description}
      </div>

      ${field.start_mapping()}
      <div tal:repeat="child field.children"
           tal:replace="structure child.render_template(item_template)" >
      </div>     
      ${field.end_mapping()}

    </div>
  </div>

</tal:def>

また、Pyramid の Configurator を使用して WSGI アプリケーションを構築するときに、オーバーライドされた Deform テンプレートをロードするように Pyramid アプリケーションを変更する必要があります。

    from pyramid_deform import configure_zpt_renderer

    configure_zpt_renderer(["mypackage:templates/deform", "mypackage2.submodule:form/templates/deform"])
于 2015-09-17T11:36:56.703 に答える