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.
我在注册时尝试为我的用户上传个人资料图片,但发生错误“处理请求时发生未处理的异常”,这是什么以及如何修复它。我已成功加载索引页面的图像,但我的注册器收到如下所示的错误。这是我的代码
错误图片 在此处输入图片描述
该错误似乎表明您没有注册IProfileRepository. 请检查您是否正在执行以下操作Startup:
IProfileRepository
Startup
services.AddScoped<IProfileRepository, ProfileRepository>()
如果你不是,我相信这就是原因。重要的错误消息实际上是“无法解析服务...”短语,如图所示 :)