Django i18n blocktrans vs trans

前端之家收集整理的这篇文章主要介绍了Django i18n blocktrans vs trans前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Django模板中,这两者之间有什么区别呢?
{% blocktrans %}My Text{% endblocktrans %}

{% trans 'My Text' %}

解决方法

Django Docs

Trans模板标签

The {% trans %} template tag translates either a constant string (enclosed in single or >double quotes) or variable content:

使用Trans标签,您仅限于单个常量字符串或变量.所以你必须使用

{# These Would Work! #}
title>{% trans "This is the title." %}</title>
<title>{% trans myvar %}</title>

但不能使用

{%trans "This is my title {{ myvar }}" %}

Blocktrans模板标签

Contrarily to the trans tag,the blocktrans tag allows you to mark complex sentences
consisting of literals and variable content for translation by making use of placeholders:

使用Blocktrans,这种代码是可行的:

{% blocktrans with book_t=book|title author_t=author|title %}
       This is {{ book_t }} by {{ author_t }}
    {% endblocktrans %}

所以Blocktrans将允许你在你的输出中更复杂一些.

但是从字面上回答你的问题:没有多少.除了演示风格,两者都将作为字符串“我的文本”发送到翻译器

原文链接:https://www.f2er.com/python/185845.html

猜你在找的Python相关文章