2014-10-19 84 views
-2

我需要從C#調用JSON函數來檢查訂單狀態。 在網頁中的函數被調用以這種方式:解析C#中的JSON函數

<script type="text/javascript"> 
    $(function() 
    { 
     $(".pro_attribute a").each(function (item) 
     { 
     var sku = $(this).attr("key"); 
     OutOfStock(sku); 
     }); 
    }); 

    function OutOfStock(sku) 
    { 
     $.getJSON(urltothewebsite + "QueryStockStatus?callback=?", { sku: sku, categoryid: "" }, function (data) 
     { 
     if (data != null) 
     { 
      if (data.stockStatus == "Sold Out") 
      { 
      var key = $("a[key='" + sku + "']"); 
      key.addClass("outof"); 
      key.append("<div class=\"outof_tip\" style=\"display: none;\">Sold Out</div>"); 

      //current sku style 
      if (sku.toLowerCase() == $("#sku").html().trim().toLowerCase()) 
      { 
       key.attr("class", "active"); 
      } 

      key.hover(function() 
      { 
       key.find('.outof_tip').show(); 
      }, function() 
      { 
       key.find('.outof_tip').hide(); 
      }) 
      } 
     } 
     }); 
    } 
    </script> 

可有人請給我的,我怎麼能進行通話爲例:

$.getJSON(urltothewebsite + "QueryStockStatus?callback=?", { sku: sku, categoryid: "" }, function (data) 

我會再解析結果我的代碼中的可變數據。我也想知道 我必須包含JSON部分的庫。

+0

看:HttpWebRequest的或Web客戶端和JSON.Net – john 2014-10-19 14:28:26

回答

0

由於它是GET請求,所以將參數添加到querystring。因此,您可以通過添加參數來構造URL,然後執行請求,獲取響應,JSON.Net以將字符串反序列化爲所需的對象。

示例代碼片段。

WebClient wc = new WebClient(); 
String data = wc.DownloadString(string.Format("http://www.example.com/QueryStockStatus?sku={0}&categoryid={1}","sku_param","cat_id_param")); // replace with required params here. 
object obj = JsonConvert.DeserializeObject(data); // use required object type here 
+1

非常感謝阿瑞丹姆納亞克,這正是我需要的,我的問題是現在解決了! :-) – user4158937 2014-10-19 16:09:53