MVC.NET 向 resx 添加额外参数(本地化)

发布于 2024-10-08 09:08:06 字数 129 浏览 3 评论 0原文

您好,我正在创建一个具有本地化功能的 MVC 项目。该项目还包括一个小测验,

问题和答案位于本地化文件(resx)中,但我需要为答案添加分数。

有没有一种简单的方法可以将额外的参数(点)添加(映射)到翻译的内容?

Hi I'm creating a MVC project, with localisation. The project also consists of a small quiz

The questions and answers are in a localisation file (resx), but I need to add points to the answers.

Is there an easy way to add (map) an extra parameter (points) to the translated content?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-10-15 09:08:06

您可以将字符串格式化程序标记放入资源文件的文本中。所以你的文本将是:

Question10 | "This question is worth {0} points." 

然后在你的代码中你可以这样做:

string.Format(Resources.QuizQuestions.Question10, 15);

You could put string formatter tokens into the text in your resource files. So your text would be:

Question10 | "This question is worth {0} points." 

Then in your code you could do:

string.Format(Resources.QuizQuestions.Question10, 15);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文