我想學習MVC,並開始與亞當弗里曼(第5版@ 2013)臨ASP.NET MVC。沒有匹配的綁定可用,並且該類型不可自行綁定。錯誤激活IProductsRepository
在第七章中,我試圖按照製作小應用的書中的示例進行操作。
設置並嘗試加載產品列表後,該應用無法加載。
我試圖創建一個模擬實現了抽象庫IProductRepository,並有Ninject返回模仿對象一旦進入了IProductRepository接口的實現的請求。
我搜索了一下,看了其他問題/答案,發現沒有什麼能夠幫助解決我的問題,讓我繼續學習。這可能是基本的東西,但我真的想知道什麼和爲什麼不應該如它應該。
public static class NinjectWebCommon
{
private static readonly Bootstrapper bootstrapper = new Bootstrapper();
/// <summary>
/// Starts the application
/// </summary>
public static void Start()
{
DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
bootstrapper.Initialize(CreateKernel);
}
/// <summary>
/// Stops the application.
/// </summary>
public static void Stop()
{
bootstrapper.ShutDown();
}
/// <summary>
/// Creates the kernel that will manage your application.
/// </summary>
/// <returns>The created kernel.</returns>
private static IKernel CreateKernel()
{
var kernel = new StandardKernel();
kernel.Bind<Func<IKernel>>().ToMethod(ctx =>() => new Bootstrapper().Kernel);
kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
RegisterServices(kernel);
return kernel;
}
/// <summary>
/// Load your modules or register your services here!
/// </summary>
/// <param name="kernel">The kernel.</param>
private static void RegisterServices(IKernel kernel)
{
DependencyResolver.SetResolver(new NinjectDependencyResolver(kernel));
}
}
}
接下來的這位是我的NinjectDependencyResolver類:
public class NinjectDependencyResolver : IDependencyResolver
{
private IKernel kernel;
[Inject]
public NinjectDependencyResolver(IKernel kernelParam)
{
kernel = kernelParam;
AddBindings();
}
public object GetService(Type serviceType)
{
return kernel.TryGet(serviceType);
}
public IEnumerable<object> GetServices(Type serviceType)
{
return kernel.GetAll(serviceType);
}
private void AddBindings()
{
var mock = new Mock<IProductsRepository>();
mock.Setup(m => m.Products).Returns(new List<Product>
{
new Product { Name = "Fotball", Price = 25 },
new Product { Name = "Surf Board", Price = 45 },
new Product { Name = "Running Shoes", Price = 95 }
});
kernel.Bind<IProductsRepository>().ToConstant(mock.Object);
}
}
這是我的控制器類:
public class ProductController : Controller
{
private IProductsRepository repository;
public ProductController(IProductsRepository productRepository)
{
repository = productRepository;
}
public ViewResult List()
{
return View(repository.Products);
}
我得到的錯誤是:
錯誤激活IProductsRepository
沒有匹配的綁定可用,且類型不可自行綁定。
激活路徑:
2)將依賴項IProductsRepository注入到ProductController類型的構造函數的參數productRepository中。
1)請求ProductController。
建議:
1)確保您已經爲IProductsRepository定義了綁定。
2)如果綁定是在模塊中定義的,請確保該模塊已加載到內核中。
3)確保你沒有意外創建多個內核。
4)如果您使用構造函數參數,請確保參數名稱與構造函數參數名稱匹配。
5)如果您正在使用自動模塊加載,請確保搜索路徑和過濾器是正確的。