抓取快遞100數據,進行快遞查詢

      8月份換了份工做,是作物流行業相關係統的,有時會須要查詢外部快遞接口,進行快遞跟蹤查詢,這裏就抓取快遞100數據進行簡單介紹。json

      須要的朋友能夠參考下。post

      先上效果圖:spa

    

     下面咱們一步一步來討論如何實現這樣的功能。設計

一、準備工做:獲取快遞100 Json數據

       

   由上圖咱們發現 快遞100的查詢路勁爲:http://www.kuaidi100.com/query?type=yuantong&postid=5714113854&id=1&valicode=&temp=0.196895086045798423d

  重要的兩個參數是type:快遞公司代碼, postid:快遞單號code

 

二、設計代碼--設計類

   這裏有一個小技巧,咱們複製 json 數據。orm

 

 1   public class ExpressStack<T> 
 2     {
 3         public string message { get; set; }
 4         public string nu { get; set; }
 5         public string ischeck { get; set; }
 6         public string com { get; set; }
 7         public string status { get; set; }
 8         public string condition { get; set; }
 9         public string state { get; set; }
10         public List<T> data { get; set; }
11     }
12 
13     public class Data
14     {
15         public string time { get; set; }
16         public string context { get; set; }
17         public string ftime { get; set; }
18     }

這樣咱們不用寫代碼,類就設計好了(有刪改),咱們使用了泛型類來處理Json數據。blog

三、編寫Action

 這個就比較簡單,一些json轉換和輸出接口

        public ActionResult Search()
        {
            return View();
        }

        [HttpPost]
        public ActionResult Search(string type, string postId)
        {
            WebClient wClient = new WebClient();
            wClient.Encoding = Encoding.UTF8;
            var response = wClient.DownloadString("http://www.kuaidi100.com/query?type=" + type + "&postid=" + postId);
            var oJson = JsonConvert.DeserializeObject<ExpressStack<Data>>(response);
            return View(oJson);
        }

四、View 顯示數據

  這裏不作異常處理,你們能夠本身加上ip

  

@using KuaiDi100.Controllers;
@model ExpressStack<Data>
<h2>快遞查詢</h2>
@using (Html.BeginForm("Search", "KuaiDi100", FormMethod.Post, new { @class = "form-inline margin-bottom-10 ", style = "margin-left:200px" }))
{
    <div class="form-group">
        <div class="col-md-10">
            <label  class="control-label">快遞公司代碼</label>
           
            <input type="text" name="type" class="form-control" />
        </div>
    </div>
    <div class="form-group">
        <label class="control-label">快遞單號</label>
        
        <input type="text" name="postId" class="form-control" />
    </div>
    <div class="form-group">
        <div class="col-md-10">
            <button class="btn btn-primary">查詢</button>
        </div>
    </div>
}

<table class="table table-striped table-bordered table-hover table-full-width" style="overflow:scroll; margin-top:50px;">
    <thead>
        <tr>
            <th>地點和跟蹤進度</th>
            <th>時間</th>
        </tr>
    </thead>
    <tbody>
        @if (Model != null)
        {
            if (Model != null)
            {
                foreach (var item in Model.data)
                {
                    <tr>
                        <td>@item.context</td>
                        <td>@item.time</td>
                    </tr>
                }
            }
            else
            {
                <tr>
                    <td style="text-align:center" colspan="2">暫無結果</td>
                </tr>
            }
        }
        else
        {
            <tr>
                <td style="text-align:center" colspan="2">暫無結果</td>
            </tr>
        }
    </tbody>
</table>

 

  運行效果就和上面第一張圖同樣了,源碼都在上面了,須要的朋友能夠參考下, 若是有幫助到你,請點擊好文要頂按鈕,謝謝支持.

相關文章
相關標籤/搜索