我的AngularJS对我的ApiController进行RESTful API调用。
在localhost中一切正常,但在IIS服务器上进行测试时会返回一个无聊且令人沮丧的{"message":"An error has occurred."}
。
我确保这些事情已经到位。 here中有一篇好文章。
<system.webServer>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
<system.web>
<customErrors mode="Off"/>
</system.web>
在IIS7上,我转到Error Pages
&gt;&gt; Edit Feature Settings
&gt;&gt; Error Responses
现在是Detailed errors
。
我们怎样才能看到详细的例外情况?我错过了其他什么吗?