zoukankan      html  css  js  c++  java
  • 取出dictionary中的值

      var dic=ViewBag.dic as Dictionary<string,List<TeenySoft.Web.Model.wx_shop.ProductInfo>>;
        if (dic!=null)
        {
              foreach (var item in dic.Keys)
                {
        <li style="height: 60px; border-bottom: 1px solid #999999; margin-left: -10px">
            <a href="/shop/product/productList" title="" style="margin-left:10px;">@item</a>  <a style="float: right; margin-right: 10px;">></a>
            <div style="height: 32px; border-bottom: none">
                <div style="float: left;"><a style="margin-left: 10px; font-size: 16px"></a></div>
                <div class="divp" style="height: 19px;">
                <ul>
                    @foreach (var item1 in dic[item])
                                        {
                                            {
                                                string strname = item1.productName.Length>4 ?item1.productName.Substring(0,4):item1.productName;
                                            
                        <li style="60px;"><a href="@("/shop/product/productDetail?productId=" + item1.id + "&pd_id=" + item1.pd_id +"&s_id="+item1.s_id)">@strname、</a></li>  
                                            }
                                      }
                </ul>
            </div>
            </div>
        </li>
                            }
                   }      }
  • 相关阅读:
    P1522 牛的旅行
    P1908 逆序对
    P1107 雷涛的小猫
    欧拉函数
    P2679 子串
    P1063 能量项链
    P1052 过河
    P1020 导弹拦截
    P1330 阳光封锁大学
    P1198 最大数
  • 原文地址:https://www.cnblogs.com/superMay/p/6397835.html
Copyright © 2011-2022 走看看