Web API Post方法始终接收空值

时间:2017-01-24 06:02:21

标签: angularjs json asp.net-web-api2

我正在使用angularjs开发Wep api2 crud操作。每当我尝试向服务器发送数据时,它都会收到null。我发送的数据如下。

 public IHttpActionResult Post(NCT_UserRegistration users)
        {
        }

这是我的Web Api控制器POST方法。

var users = {
        User_EmailId: $scope.User_EmailId,
        User_Password: $scope.User_Password,
        User_Name: $scope.User_Name,
        User_MobileNum: $scope.User_MobileNum,
        User_Status: $scope.User_Status,
        User_Role: $scope.User_Role,
        User_CreatedDate: new Date(),
        User_UpdatedDate: new Date()
    };
This is data for example.
users = Object {User_EmailId: "gff", User_Password: "gfg", User_Name: "fgf", User_MobileNum: "gff", User_Status: "fgfg"…}

在这里,我总是收到空值。我的目标如下。 $ scope.saveUsers = function(){

#include <QTableWidget>



tableWidget->setEditTriggers(QAbstractItemView::NoEditTriggers);
tableWidget->setFocusPolicy(Qt::NoFocus);
tableWidget->setSelectionMode(QAbstractItemView::NoSelection);

我可以知道为什么我总是得到空值吗?任何帮助,将不胜感激。谢谢。

0 个答案:

没有答案