mvc json请求生命周期

时间:2012-11-13 23:14:07

标签: asp.net-mvc json

我是asp.net和MVC的新手。

我试图使用json请求并填充一些文本框。

但我注意到当我使用json时,我无法访问视图中其他文本框的值。 例如

string s2 = Request.Form["selectedTestCategory"];
当我调试时,

会生成s2 = null。 但是如果我在页面上放置一个提交按钮,则该值不为空。 (到目前为止,我知道我只能在控制器中将一个参数传递给我的JSON方法)

我的问题是当我启动json请求时会发生什么?为什么我无法从Request.Form [...]

获取值

谢谢,

更新

这是我的json

<script>
$(document).ready(function() {
    $('select#testStationUniqueId').change(function() {
        var testStation = $(this).val();
        $.ajaxSetup({ cache: false });



        $.ajax({
            url: "TestInput/getTestStationInformation/" + testStation,

            type: 'post',
            success: function(data) {
                $('#driveDetailDiv').empty();
                for (var i = 0; i < data.length; i++) {
                    $.post('TestInput/Details/', { id: data[i] }, function(data2) {
                        $('#driveDetailDiv').append(data2);
                    });
                }
            }
        });
    });
});

这是在我的控制器中

public PartialViewResult Details(string id)
    {
        //DriveDetails t = new DriveDetails(id);
        //return PartialView("DriveDetailsPartial", t);

        test_instance_input_model ti = new test_instance_input_model();
        string s2 = Request.Form["selectedTestCategory"];
        repository.setTestInstanceAttributes(ti, id);

        return PartialView("TestInstancePartial", ti);
    }

详细信息中的s2为空,但如果我使用提交按钮,则它将具有正确的值。

所以当我发送json请求时,我正试图找出它为空的原因。

1 个答案:

答案 0 :(得分:1)

在您的JavaScript中,您不包括jQuery ajax请求中的任何数据(请参阅jQuery ajax)。因此jQuery不添加任何请求参数。您需要包含一个数据对象,jQuery将变成参数,即数据对象中的属性越多,请求中的参数就越多。

$.ajax({
    url: '',
    data: { selectedTestCategory: 'category' },
    dataType: 'post',
    success: function() {}
});

此外,在您的控制器中,您可以快捷方式访问请求参数。

string s2 = Request["selectedTestCategory"];