• silverlight实时从Javascript获取json数据


    //C#代码   
    
      public void GetJsonDate()
            {
                object o = System.Windows.Browser.HtmlPage.Window.Eval("GetJsonDate();");
                if (o != null)
                {
                    if (o.ToString() == "over")
                    {
                        LoadValue();
                        System.Windows.Threading.DispatcherTimer dti = new System.Windows.Threading.DispatcherTimer()
                             {
                                 Interval = TimeSpan.FromMilliseconds(3000)
                             };
                        dti.Tick += (s, e) =>
                        {
                            dti.Stop();
                            GetJsonDate();
                        };
                        dti.Start();
                    }
                    else
                    {
                        DataContractJsonSerializer json = new DataContractJsonSerializer(typeof(Optical));
                        System.IO.MemoryStream ms = new System.IO.MemoryStream(System.Text.Encoding.Unicode.GetBytes(o.ToString()));
                        opticallist.Add((Optical)json.ReadObject(ms));
                        GetJsonDate();
                    }
                }
            }
    
    //DataContractJsonSerializer  需要引用using //System.Runtime.Serialization.Json;
    //System.Runtime.Serialization;
    //System.ServiceModel
    /*
    *思路:如果javascript传入over字符串 读取让数据并3秒继续执行,否则继续获取
    */
    
       window.onload = function () {
                //       slHost = document.getElementById("silverlightControl");
                //     page = slHost.contentDocument;
                GetDate();
            };
    
            function GetDate() {
                $.post('/Page/TeleCable/GetData.aspx', { equipid: 4 }, function (data) {
                    jsondate = data;
                });
                setTimeout(GetDate, 3000);
            }
    
            function GetJsonDate() {
                if (jsondate) {
                    if (jsonCount < jsondate.length) {
                        var j = jsondate[jsonCount];
                        jsonCount++;
                        return (JSON.stringify(j));
                    }
                    else {
                        jsonCount = 0;
                        jsondate = null;
                        return "over";
                    }
                }
            }
    

     JSON这个对象 IE8等等以下低版本的浏览器是没有 这里要注意

  • 相关阅读:
    转载一个好用的div弹出层插件
    asp.net 母版页使用方法
    visual studio 代码排版组合键
    模仿米折网商品图片自动翻页效果
    BinaryWriter 、BinaryReader在读写
    Java 8 Lambda 表达式
    IBeacon协议分析
    Centos配置jdk和tomcat环境
    apidoc 生成Restful web Api文档
    数组和链表的区别
  • 原文地址:https://www.cnblogs.com/yannis/p/2608484.html
Copyright © 2020-2023  润新知