weixin_33693070 2014-01-21 08:30 采纳率: 0%
浏览 62

JSON发送的空数据

For unknown reason for me data received by my function in controller is always null. My data is translated into json properly. Data is send but not received (sending ends with success).

Here You can see my Ajax function

$.ajax({
    url: "/Devices/Read",
    contentType: "text",
    type: "POST",
    datatype: "json",
    data: ko.toJSON(self),
    error: function (xmlHttpRequest, errorText, thrownError) {
        console.log("error")
    },
    success: function (data) {
        if (data != null) {
            console.log("success");
        }
    }
});

here my function in controller:

[HttpPost]
public ActionResult Read(string data)
{
    return Json(new Object());
}

I tried:

  1. changing parameter type to: Object, String
  2. changing contentType to : text, application/json; charset=utf-8

Still no efects. Can anyone suggest me where should I search for mistake?

UPDATE: After changing method declaration to:

public ActionResult Read(object[] data, string DeviceUser, string DeviceId, string number)

Last three strings are OK but first object consist of proper number of elements but they are null. in JS they are alements in array of classes

structure of my JS objects:

  var Eq = function (name, price) {
    var self = this;
    self.DeviceSerialNumber = ko.observable();
    self.Batch = ko.observable();

};
var ViewModel = function () {
    var self = this;
    self.data = ko.observableArray([]);
    self.DeviceUser = ko.observable();
    self.DeviceId = ko.observable();
    self.number = ko.observable(1);
};
  • 写回答

3条回答 默认 最新

  • weixin_33674437 2014-01-21 08:45
    关注

    In your controller action, why do you:

    return RedirectToAction("Index"); 
    

    I think you may want to:

    return Json(data);
    
    评论

报告相同问题?

悬赏问题

  • ¥200 csgo2的viewmatrix值是否还有别的获取方式
  • ¥15 Stable Diffusion,用Ebsynth utility在视频选帧图重绘,第一步报错,蒙版和帧图没法生成,怎么处理啊
  • ¥15 请把下列每一行代码完整地读懂并注释出来
  • ¥15 pycharm运行main文件,显示没有conda环境
  • ¥15 寻找公式识别开发,自动识别整页文档、图像公式的软件
  • ¥15 为什么eclipse不能再下载了?
  • ¥15 编辑cmake lists 明明写了project项目名,但是还是报错怎么回事
  • ¥15 关于#计算机视觉#的问题:求一份高质量桥梁多病害数据集
  • ¥15 特定网页无法访问,已排除网页问题
  • ¥50 如何将脑的图像投影到颅骨上