gpt4 book ai didi

javascript - 从 ajax 返回的数据对象中读取多个变量

转载 作者:行者123 更新时间:2023-11-29 18:37:55 26 4
gpt4 key购买 nike

我正在对 mvc Controller 进行 jquery ajax 调用。我想从 Controller 返回 2 个或更多变量。我如何为此在 Controller 中打包数据?我如何使用 jquery 提取?

最佳答案

在您的 Controller 操作中,使用内置的 Json 方法:

return Json(new {name1 = "value1", name2 = "value2"});

还有你的 jQuery 调用:

$.ajax({
type: "POST",
url: "/your-url",
dataType: "json",
data: {data: to_send},
success: function(msg) {
alert(msg.name1);
alert(msg.name2);
}
});
//you can of course use another ajax function jQuery provides.

关于javascript - 从 ajax 返回的数据对象中读取多个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/736783/

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