求助后台json串返回到前台自动四舍五入怎么解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求助后台json串返回到前台自动四舍五入怎么解决相关的知识,希望对你有一定的参考价值。

参考技术A 这个还是建议后台四舍五入后传到前台比较好!因为js四舍五入精度丢失厉害!如果接口确实不是自己能控制的话,那么也只能遍历处理后展示到页面了

用ajax获取后台数据,返回json数据,怎么在前台使用?

用ajax获取后台数据,返回json数据,怎么在前台使用呢?

后台

C# code
 
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if (dataType == "SearchCustomer")
                {
                    int ID;
                    if (Int32.TryParse(CustomerID, out ID))
                    {
                        string s = GridComputer.GridCustomer.getCustomer(1, 1, ID);
                        if (s == null)
                        {
                            context.Response.ContentType = "text/plain";
                            context.Response.Write("[{\"name\":无用户,\"id\":\"0\",\"company\":\"无用户\"}]");
                        }
                        else { context.Response.Write(s); }
                    }
 
                


前台

JavaScript code
 
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 $(document).ready(function () {
            $("#Button3").click(
        function (SucCallback) {
            $.ajax(
            {
                type: "get",
                url: ‘GridDatas.ashx‘//后台处理程序   
                dataType: ‘json‘,     //接受数据格式    
                data: ‘DataType=SearchCustomer&CustomerID=‘ + document.getElementById("Text3").value,         //要传递的数据    
                success:SucCallback,
                error: function () { alert("error"); }
            });
        })
        })



参考代码

JavaScript code
 
?
1
2
3
4
5
6
7
8
9
grid.getCustomer(1,2,function (data) {
        var list = ‘<p>‘ + tree_GridInfo._name + ‘的用户有</p><br>‘;
        list += ‘<table id="customers"><tr><th>姓名</th><th>电话</th></tr> ‘;
        $.each(data, function (i, n) {
            list += ‘<tr onclick="showUser(‘ + 1 + ‘)"><td>‘;
            list += n.name + ‘</td>‘ ‘<td>‘ + n.company;
            list += ‘</td></tr>‘;
        });
        $("#SearchResult").html(list)
=======================================================================================
看你的json数据是列表还是单个了,就一条就无需中括号了
context.Response.Write("{\"name\":无用户,\"id\":\"0\",\"company\":\"无用户\"}");

$(document).ready(function () {
            $("#Button3").click(
        function (SucCallback) {
            $.ajax(
            {
                type: "get",
                url: ‘GridDatas.ashx‘, //后台处理程序   
                dataType: ‘json‘,     //接受数据格式    
                data: ‘DataType=SearchCustomer&CustomerID=‘ + document.getElementById("Text3").value,         //要传递的数据    
                function (dataJson) {
                      alert(dataJson.Name);
                      alert(dataJson.Id);
                },
                error: function () { alert("error"); }
            });
        })
        })
 
 


























以上是关于求助后台json串返回到前台自动四舍五入怎么解决的主要内容,如果未能解决你的问题,请参考以下文章

json串向后台传递数值自动四舍五入的问题

servlet怎么将JSON 串返回给前台页面,前台又通过啥方式接受并显示出来呢?有没有实例参考下

前台JSON数据传送数据到后台,报400错误怎么解决

SSM框架:解决后台传数据到前台中文乱码问题,使用@ResponseBody返回json 中文乱码

spring boot 解决后台返回 json 到前台中文乱码之后出现返回json数据报错 500:no convertter for return value of type

用ajax获取后台数据,返回json数据,怎么在前台使用?