在我的开发环境中,当我尝试加载动态生成的包时收到 404 响应。奇怪的是,这并没有发生在我们的生产环境中,所以它并不是真正的灾难性,但它使开发有点令人沮丧。
应该发生的是:
- 在应用程序预启动(WebActivator PreStart)时,设置依赖解析器、Web API 和 MVC 配置内容。
- 在应用程序启动后(WebActivator PostStart),通过依赖解析器加载服务(比方说
IMyService
)。 - 实例化自定义
IBundleTransform
(JsonBundleTransform
- 请参阅下面的代码)。 - 打电话
IEnumerable<string> IMyService.ListSupportedGroups()
。 - 遍历支持的组并构建自定义包(
CustomBundle
- 见下文...)。 - 将自定义捆绑包添加到
BundleTable.Bundles
. - 将静态 JS/CSS 文件添加到
BundleTable.Bundles
. - 在页面中引用各种捆绑包并在浏览器中查看内容。
对于具有 404 错误的自定义捆绑包,它在第 8 步失败。调试时,从不调用自定义捆绑转换器。然而,正如我上面提到的,在生产中一切正常——尽管我已经比较了配置文件并且看不到我的开发配置中缺少任何应该有任何影响的东西。此外,在生产环境中,无论 web.config 中的 compiler->debug 值如何,捆绑的内容都会正确呈现。
其他注意事项:
- 我在生产中使用 IIS 7.5,在开发中使用 IIS 8。
- 当我在 dev 中设置 debug="false" 时,我在所有捆绑包上都得到了 404。
- 这是有效的,但在某个时候停止了,我无法确定发生的时间或原因。
我正在使用的代码如下(删除了冗余代码,更改了名称以保护无辜者等...):
转变
public class JsonBundleTransform: IBundleTransform
{
public void Process( BundleContext context, BundleResponse response )
{
var bundle = context.BundleCollection.FirstOrDefault(b => b.Path == context.BundleVirtualPath) as CustomBundle;
response.Content = string.Format( ";var obj = {0};", JsonConvert.SerializeObject( bundle.KeyValues ) );
response.ContentType = "application/javascript";
response.Cacheability = HttpCacheability.Server;
}
}
自定义捆绑包
public class CustomBundle: Bundle
{
public CustomBundle( string virtualPath, IBundleTransform transform, IMyService myService, string groupId ) : base( virtualPath, transform )
{
keyValues = myService.GetKeyValuesByGroupId( groupId );
}
public IDictionary<string, string> KeyValues { get; private set; }
}
配置
public class BundleConfig
{
public static void RegisterBundles( BundleCollection bundles, IMyService myService )
{
var transform = new JsonBundleTransform();
var jsonBundles = myService
.ListSupportedGroups()
.Select( groupId =>
new CustomBundle(
string.Format( "~/resource/script/keyValues-{0}.js", groupId ),
transform,
myService,
groupId
)
);
foreach ( var jsonBundle in jsonBundles ) {
bundles.Add( jsonBundle );
}
// Static bundles added here...
}
}
渲染脚本
@Scripts.Render( Url.Content( string.Format( "~/resource/script/keyValues-{0}.js", Model.GroupId ) ) ) )
知道我在这里缺少什么来使它正常工作吗?
提前感谢您提供的任何帮助或建议。
编辑
鉴于它正在生产中工作,我强烈倾向于认为问题是环境问题而不是代码问题 - 但是,就我的一生而言,我还无法弄清楚它是什么。我认为最有可能的候选人与配置或引用有关(老实说,IIS 版本似乎不太可能)。