1

我们有一个 MVC5 项目,它有很多脚本文件和样式,我们使用 System.Web.Optimization。

问题是当部署到 azure 时出现如下错误:

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error: 
Line 4:  
Line 5:  @section scripts{
Line 6:      @Scripts.Render("~/bundles/timeApp")
Line 7:      <script>

请注意,它在本地机器上正常工作。

我们试图降级“WEBGREASE”但没有运气

谢谢。

4

1 回答 1

-2

在我遇到此问题的多个实例中,它与 JavaScript 中的错误有关。注释掉所有正在加载和测试的文件,然后一次取消注释部分并重新测试以查看何时重新引入错误,这将导致您找到根本原因。

于 2016-05-11T20:47:22.640 回答