在我的 asp.net mvc 4 应用程序中,我想将参数传递给局部视图,但是我们要传递的参数来自 javascript 代码
下面是代码
<script>
var TestId;
$(document).ready(function () {
// Send an AJAX request
$.getJSON("/api//GetFun?Id="+@ViewBag.Id,
function (data) {
TestId= data.Id
//i am getting the id here which i need to pass in partial view
}
1)...........
});
</script>
html代码:
<div id="tab1" >
2).... @{ Html.RenderAction("MyPartialView", "MyController", new { id = TestId });}
</div>
所以让我知道如何将测试 ID 传递给我的部分视图:在 HTML(2) 代码或 javascript (1) 中