为什么 ResourceManager.GetResourceSet 在构建后的第一个请求上返回 null? (C#)

发布于 2024-08-08 22:30:34 字数 539 浏览 8 评论 0原文

我正在开发一个用 C# (asp.net) 构建的大型 Web 应用程序。我有一个简单的 aspx 页面,它向客户端浏览器提供本地化字符串,以便在 javascript 控件中使用。为了获取字符串,我执行以下操作:

ResourceManager _resources = new ResourceManager(_pathname, typeof(ARM).Assembly);
ResourceSet rs = _resources.GetResourceSet(culture, false, false);

//loop through rs and write the keys & values out to the client in plaintext

这一切都工作正常,除了在清理/构建或重建之后立即向页面发出第一个请求(如果我只是进行一些更改,然后构建,它工作正常)。因此,在第一个请求中,当我尝试迭代 ResourceSet 时,我收到了空引用异常。但是,如果我在错误发生后刷新页面,那么从那时起它就可以正常工作了。

有谁知道为什么会发生这种情况?

I'm working on a large-ish web application built in C# (asp.net). I've got a simple aspx page that serves localized strings to the client browser for use in javascript controls. To get the strings, I do the following:

ResourceManager _resources = new ResourceManager(_pathname, typeof(ARM).Assembly);
ResourceSet rs = _resources.GetResourceSet(culture, false, false);

//loop through rs and write the keys & values out to the client in plaintext

This all works fine, except for the first request to the page immediately after a Clean/Build or a Rebuild (if I simply make some changes, then Build, it works fine). So on the first request I get a null reference exception when I try to iterate the ResourceSet. If I refresh the page after the error, however, it works fine from then on.

Does anyone know why this might be happening?

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

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-08-15 22:30:34

GetResourceSet 方法的第二个参数“createIfNotExist”必须为 true,它告诉 ResourceManager 在尚未加载的情况下加载 ResourceSet。

ResourceSet rs = _resources.GetResourceSet(culture, true, false);

Second param "createIfNotExist" of the method GetResourceSet has to be true, that tells ResourceManager to load the ResourceSet if not yet loaded.

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