gpt4 book ai didi

javascript - 如何将类参数发送到 Controller

转载 作者:行者123 更新时间:2023-12-02 15:18:09 25 4
gpt4 key购买 nike

我的类(class);

public class Disciplines
{
public int Id { get; set; }

public string Name { get; set; }
}

我的 Controller ;

public void test (Disciplines discipline)
{

}

并且使用ajax我想将参数发送到测试 Controller 。

我的 JavaScript 是;

    var disciplines = {Id:1, name:"white"};
$.ajax({

type: "POST",
url: "test",
data: { disciplines:disciplines },
dataType: "Json",
success: function (response) {
},
beforeSend: function () {


showIndicator();
},
error: onFailure,

});

当我调试它时, Controller 参数始终为空。我怎样才能成功呢。非常感谢。

最佳答案

问题是因为模型绑定(bind)器将在请求中查找 idname 属性,而不是 disciplines。试试这个:

var disciplines = {
id: 1,
name: "white"
};

$.ajax({
type: "POST",
url: "test",
data: disciplines,
dataType: "json",
success: function (response) {
},
beforeSend: function () {
showIndicator();
},
error: onFailure,
});

关于javascript - 如何将类参数发送到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34306776/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com