我是MVC的新手。我有一个按钮,当单击时,打开一个模式弹出窗口(JQuery)。在这个模态中,我有10个DropDownLists,我创建了一个特定的键,其中包含来自这些下拉列表的所有选定值。我还有另一个按钮打开另一个模态。这是我感到困惑的地方:我需要做一个包含密钥的查询,结果,我需要在第二个模态中填充WebGrid。
我该怎么做?我一直在考虑一个actionlink或一个局部视图,或者在控制器中调用一个返回列表的方法。
答案 0 :(得分:0)
使用ajax很容易,看看:
$.ajax({
type: "POST", // type of request
url: "page.php", // page
dataType: 'JSON', // Format of send and response
data: { id: "2", name: "example" }, // data in JSON format
sucess: function(response) {
alert('The response was: ' + response); // All ok
},
error: function() {
alert('Connection expired!'); // Request failed
}
});