MVC Action的json输出

时间:2010-08-19 21:50:12

标签: asp.net-mvc json action

如何预览使用Jsonresult的MVC Action的JSON输出?

5 个答案:

答案 0 :(得分:0)

您可以使用Firefox + Firebug查看回复

答案 1 :(得分:0)

我会选择firefox Firebug插件,

或者您可以使用某些“proxiing”工具,如TCPMon https://tcpmon.dev.java.net/(java),或者使用MS SOAP工具包http://www.microsoft.com/downloads/details.aspx?FamilyId=C943C0DD-CEEC-4088-9753-86F052EC8450&displaylang=en

答案 2 :(得分:0)

您可以将JSON ViewerFiddler 2

结合使用

答案 3 :(得分:0)

我使用这段小代码来转储json对象

    function dump(obj) {
        var out = '';
        for (var i in obj) {
            out += i + ": " + obj[i] + "\n";
        }

        alert(out);

        // or, if you wanted to avoid alerts...

        var pre = document.createElement('pre');
        pre.innerHTML = out;
        document.body.appendChild(pre)
    }

答案 4 :(得分:0)

这可能会有所帮助。

MVC.ApiExplorer是一个可移植的独立组件,可以帮助您探索ASP.NET MVC项目中控制器的所有操作。