Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
查看我的日志记录,我发现大量异常说明“无法找到未定义的控制器”。
这怎么可能发生?以前有人遇到过这个问题吗?无论如何要修复它或至少忽略它?
请指教。
听起来有些东西undefined在 javascript 中并且正在访问您的 MVC 应用程序。
undefined
例如
var url = 'http://myhost.com/'; url += desiredController; $.ajax( /* .... */ );
如果desiredController是undefined,并且这个调用被发送,我怀疑 MVC 会寻找UndefinedController.
desiredController
UndefinedController