MVC controller method not receiving json data from $http post

前端 未结 3 1304
北荒
北荒 2021-01-24 01:17

This might be basic question but I couldn\'t find where the issue is. I am using .Net Core for by back end and angularJS for front end. below is my code.

<
3条回答
  •  独厮守ぢ
    2021-01-24 01:36

    Just Change your

    data: { email: scope.email, password: scope.password },
    

    to

    data: { "email": scope.email, "password": scope.password },
    

提交回复
热议问题