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>
                            }
                   }      }
  • 相关阅读:
    setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key
    Kinect 骨骼追踪数据的处理方法
    了解与建设有中国特色的Android M&N(Android6.0和7.0新特性分析)
    【计算机视觉】深度相机(一)--TOF总结
    A million requests per second with Python
    buf.fill()
    buf.slice()
    buf.toJSON()
    buf.toString()
    Buffer.compare()
  • 原文地址:https://www.cnblogs.com/superMay/p/6397835.html
Copyright © 2011-2022 走看看