gpt4 book ai didi

python - 如何在JS代码中正确使用gettext?

转载 作者:太空宇宙 更新时间:2023-11-03 14:50:30 24 4
gpt4 key购买 nike

在我的 Django 项目中,我有 JS 文件,其中包含需要翻译的文本。我使用下面的下一个代码。

makemessagescompilemessages命令的帮助下,我创建了djangojs.podjangojs.mo文件。问题是添加 gettext 后 JS 代码无法正常工作。它会在浏览器控制台中引发错误。如何解决这个问题?

urls.py:

from django.views.i18n import javascript_catalog

js_info_dict = {
'domain': 'djangojs',
'packages': ('slider',), # my app name
}

urlpatterns = [
[OTHER URLs]

# Internationalization in Javascript Code
url(r'^jsi18n/$',
javascript_catalog,
js_info_dict,
name='javascript-catalog'),
]

JS:

$("#slideModalBox").on("click", "#imageFieldClearBtn", function() {
$('#imageFieldFileName').val("");
$('#imageFieldClearBtn').hide();
$('#imageFieldInput input:file').val("");
$("#imageFieldInputTitle").text(gettext("Add new image"););
});

$("#slideModalBox").on("change", "#imageFieldInput input:file", function() {
var file = this.files[0];
var reader = new FileReader();
reader.onload = function (e) {
$("#imageFieldInputTitle").text(gettext("Change Image")); <-- This place raise error
$("#imageFieldClearBtn").show();
$("#imageFieldFileName").val(file.name);
}
reader.readAsDataURL(file);
});

浏览器控制台中出现错误:

ReferenceError: gettext is not defined
reader.onload http://127.0.0.1:8000/static/js/slider/image_field.js:12:9

最佳答案

你有<script src="/jsi18n/"></script>吗?在你的 js 脚本之前添加到你的 base.html 中?

关于python - 如何在JS代码中正确使用gettext?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45919247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com