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>
                            }
                   }      }
  • 相关阅读:
    系统改造/升级项目的注意点
    phpunit相关
    IE浏览器:定义文档兼容性
    pptx,docx,xlsx 文件下载问题
    常用linux命令
    oracle 子查询写法
    QQ上传大文件为什么这么快
    decimal tostring 格式
    2020HDU多校第三场 1005 Little W and Contest
    火车进栈(进出栈的模拟,dfs爆搜)
  • 原文地址:https://www.cnblogs.com/superMay/p/6397835.html
Copyright © 2011-2022 走看看