1

我在 C# 中有一个 arrayList,我在其中存储 ip 和 isp 的数据,并从 mysql 表中计数如下,

ArrayList conRc = new ArrayList();

while (readIp.Read())
{
    string ipVal = readIp.GetString(0);
    string ispVal = readIp.GetString(1);
    int conLvlVal = readIp.GetInt32(2);

    conRc.Add(new ConfidenceLvl(ipVal,ispVal,conLvlVal));
}

这是我的 ConfidenceLvl 课程,

public class ConfidenceLvl
{
    private string ip;
    private string isp;
    private int conLvl;

    public string Ip
    {
        get { return ip; }
        set { ip = value; }
    }
    public string Isp
    {
        get { return isp; }
        set { isp = value; }
    }
    public int ConLvl
    {
        get { return conLvl; }
        set { conLvl = value; }
    }

    public ConfidenceLvl(string ipVal, string ispVal, int conLvlVal) {
        this.conLvl = conLvlVal;
        this.ip = ipVal;
        this.isp = ispVal;
    }
}

我想将此传递给 javascript,以便我可以利用这些值通过 jqPlot 创建图表。请帮助解决这个问题,我使用这种方法将我的值传递给 javascript,但这一切都作为一个字符串进行。我想分别获取这些值并在 javascript 中使用它们。请帮我。非常感谢你。

编辑:感谢 Dominik Kirschenhofer,在成功解析到 javascript 后,我​​终于完成了这个。我可以知道如何操作这些数据吗?喜欢一一获取记录??我试过但没有奏效,

    <asp:HiddenField ID="correlate" value= "" runat="server" />
    <script language="javascript" type="text/javascript">
        var jsonString = document.getElementById('correlate').value;
        var arr_from_json = JSON.parse(jsonString);

    </script>

json字符串如下,

    [{"Ip":"0","Count":"10"},{"Ip":"1","Count":"11"},{"Ip":"2","Count":"12"},{"Ip":"3","Count":"13"},{"Ip":"4","Count":"14"},{"Ip":"5","Count":"15"},{"Ip":"6","Count":"16"},{"Ip":"7","Count":"17"},{"Ip":"8","Count":"18"},{"Ip":"9","Count":"19"}] 

我可以知道如何处理这些记录吗:)

编辑:解决了

    <asp:HiddenField ID="correlate" value= "" runat="server" />
    <script language="javascript" type="text/javascript">
        var jsonString = document.getElementById('correlate').value;
        jsonString = "{\"corrData\":" + jsonString + "}";
        var arr_from_json = JSON.parse(jsonString);
        alert(Number(arr_from_json.corrData[2].Ip)+1);
    </script>

我添加了 corrData 以便我可以像在数组中一样通过整数 ID 调用它。:) 感谢你们的帮助 :) 如果有更好的方法..请告诉我 :)

4

2 回答 2

2

如果您想要在 js 中使用的代码中有一个列表或一组固定值,则更简单的方法如您发布的链接中所述。意味着序列化列表并将其存储在隐藏字段中。当你需要在 js 中使用它时,只需反序列化并使用它。

序列化参见:http: //blogs.microsoft.co.il/blogs/pini_dayan/archive/2009/03/12/convert-objects-to-json-in-c-using-javascriptserializer.aspx

序列化:从 json 反序列化为 javascript 对象

那么你必须做什么:1)使用通用列表。2) 根据需要填写清单。3) 将列表转换为数组 => 使用 linq 非常简单:myList.ToArray() 4) 将数组序列化为 json 字符串。请参阅第一个链接。5)在你的页面上放置一个隐藏字段,并将json字符串设置为它的值(代码后面) 6)每当你需要在js中使用这个数组时,只需反序列化隐藏字段的值并使用它。见第二个链接。

于 2012-08-29T10:10:48.290 回答
2

如果您使用的是 ASP.net MVC,那么您可以执行以下操作。我已经重写了您的代码以使用泛型列表而不是 ArrayList,ArrayList 不是强类型的,并且由于泛型随 .net 2.0 一起出现,因此通常被认为已贬值

请注意,以下代码仅适用于 POST 请求,除非您将其修改为包含JsonRequestBehavior.AllowGet

public class ConfidenceLvl
    {
        public string IpVal { get; set; }
        public string IspVal { get; set; }
        public string ConLvlVal { get; set; }
    }

    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            IList<ConfidenceLvl> levels = new List<ConfidenceLvl>();
            levels.Add(new ConfidenceLvl { IpVal = "129.123.123.123", ConLvlVal = "1", IspVal = "AOL" });
            levels.Add(new ConfidenceLvl { IpVal = "129.123.0.0", ConLvlVal = "3", IspVal = "CompuServe" });

            // Controlled json
            return Json(levels.Select(lv => new { title = lv.IspVal, ip = lv.IpVal }));

            // As it comes json
            //return Json(levels);
        }
    }
}
于 2012-08-29T10:30:39.760 回答