ScriptBundle说未将对象引用设置为对象的实例

时间:2019-06-11 13:18:00

标签: asp.net-mvc-5 scriptbundle

如果我使用ScriptBundle,则在Asp.Net MVC BundleConfig中,此代码显示以下错误:

代码:

bundles.Add(new ScriptBundle("~/node/GobiJs").Include(
            "~/node_modules/...../test.js"
        ));

错误:

enter image description here

但是如果我使用Bundle代替

ScriptBundle
bundles.Add(new Bundle("~/node/GobiJs").Include(
                "~/node_modules/...../test.js"
            ));

它工作正常。谁能告诉我ScriptBundle怎么了,为什么它不起作用?

0 个答案:

没有答案