Ajax数据到FLOT图表的格式是否正确?

时间:2013-01-16 17:46:01

标签: c# ajax flot

我知道有几个关于此的帖子,但我想我错过了一些东西。我在ajax调用中返回下面的数据,但它似乎不是FLOT的正确格式。是否有更好的格式来返回数据或应该更改FLOT以识别它? TIA

<script type="text/javascript">
     $(document).ready(function() {
         // Add the page method call as an onclick handler for the div.
         $("#Result").click(function() {
             $.ajax({
                 type: "POST",
                 url: "WebTest.aspx/GetData",
                 data: "{}",
                 contentType: "application/json; charset=utf-8",
                 dataType: "json",
                 success: function(msg) {
                     // Replace the div's content with the page method's return.

                     var jsObj = []
                     jsObj.push($.parseJSON(msg.d));

                     $.plot($("#Result"), jsObj, {
                         grid: {
                             backgroundColor: "#E5E5E5",

                             mouseActiveRadius: 20
                         }


                     }
                 );
                 }
             });
         });
     });
</script>


[WebMethod]
public static string GetData()
{

    DataLines dataLine1 = new DataLines();
    DataLines dataLine2 = new DataLines();


    int[] lineA_Point1 = new int[] { 4, 6 };
    int[] lineA_Point2 = new int[] { 2, 10};

    List<int[]> dataA = new List<int[]>();
    dataA.Add(lineA_Point1);
    dataA.Add(lineA_Point2);

    dataLine1.data = dataA;
    dataLine1.label = "DataLine1";

    JavaScriptSerializer js = new JavaScriptSerializer();

    string Line1 = js.Serialize(dataLine1);

    return Line1;
}

1 个答案:

答案 0 :(得分:7)

1。)将JSON字符串转换回javascript中的javascript对象:

var jsObj = $.parseJSON(d); // using jquery method

2.。)在你的GetData方法中,你的

dataLine1.data = "[[1356328800000,5],[1356933600000,3]]";

无法运作。这将使您的数据元素成为JSON中的字符串而不是javascript数组。最好在WebMethod中修复此问题:

DataLines dataLine1 = new DataLines();
dataLine1.data = new List<int[]>();
dataLine1.data.Add(new int[] {1356328800000,5});
dataLine1.data.Add(new int[] {1356933600000,3});

这是完全未经测试的(我之前从未使用过JavaScriptSerializer,但类似的代码可以与ServiceStack序列化程序一起使用。