gpt4 book ai didi

c# - MVC 3 : What's the most common way of asynchronously loading form fields based on previous choices?

转载 作者:行者123 更新时间:2023-11-30 12:34:50 25 4
gpt4 key购买 nike

想象一下,在一个表单上有两个列表框,第二个列表框的选择取决于第一个列表框的选择。使用 MVC3 解决此问题的最常见或最简洁的方法是什么?

最佳答案

我想说你需要两件事来干净地完成这件事; Ajax 和 Json ActionResult

$('#listbox').change(function() {
$.ajax({
url: '/ListBoxChange',
method: 'POST',
data: {
listBoxValue: 'The value'
},
success: function(data) {
alert (data.Result);
}
});
});

操作结果:

[HttpPost]
public ActionResult ListBoxChange(string listBoxValue)
{
string result = GetResult();
return Json(new {
Result = result
});
}

关于c# - MVC 3 : What's the most common way of asynchronously loading form fields based on previous choices?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6673141/

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