Problem: Używam interfejsu webowego MVC4 i zgłaszam błąd podczas wywołania Get().Błąd "CommentController nie ma domyślnego konstruktora"
Błąd:
System.ArgumentException: Type 'Comments2.Controllers.CommentsController' does not have a default constructor
StackTrace:
at System.Linq.Expressions.Expression.New(Type type)
at System.Web.Http.Internal.TypeActivator.Create[TBase](Type instanceType)
at System.Web.Http.Dispatcher.DefaultHttpControllerActivator.Create(HttpRequestMessage request, HttpControllerDescriptor controllerDescriptor, Type controllerType)"}
Cieszę dać żadnego kodu wymaganego po prostu daj mi znać, co chcesz zobaczyć.
Kontroler:
namespace Comments2.Controllers
{
//[Authorize]
public class CommentsController : ApiController
{
ICommentRepository repository;
public CommentsController(ICommentRepository repository)
{
this.repository = repository;
}
[Queryable]
public IQueryable<Comment> GetComments()
{
return repository.Get().AsQueryable();
}
public Comment GetComment(int id)
{
Comment comment;
if (!repository.TryGet(id, out comment))
throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
return comment;
}
}
JavaScript:
$(function() {
$("#getComments").click(function() {
// We're using a Knockout model. This clears out the existing comments.
viewModel.comments([]);
$.get('/api/comments', function (data) {
// Update the Knockout model (and thus the UI) with the comments received back
// from the Web API call.
viewModel.comments(data);
});
});
});
Czy prawidłowo skonfigurowałeś kontener DI i uruchomiłeś go od początku aplikacji? Czy skonfigurowałeś instancję ICommentRepository do wstrzyknięcia? –
Nie mam. Czy byłoby lepiej dla użytkownika Unity lub Ninject? To są jedyne dwie, które mnie interesują, rozumiem pojęcie IoC i DI, ale próbuję nauczyć się używać go z MVC4 i WebAPI ... czy dodaję to przez NuGet? –