美文网首页
0822_评论

0822_评论

作者: 天才在战斗 | 来源:发表于2016-08-23 08:31 被阅读20次

    新内容(评论)

    目前在公司中比较适用的接口————畅言,多说……

    流行的评论布局:一层接一层的方式,一层套一层的嵌套方式(也称“盖楼”)

    “盖楼”方式的评论要点

    • 布局样式
    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        <title>盖楼评论</title>
        <style type="text/css" rel="stylesheet">
          .commentbox{
              border: 1px solid #ccc;
              margin: 0 3px;
              padding: 10px;
          }
        </style>
      </head>
      <body>
        <div class="commentbox">
          1111111111111
          <div class="commentbox">
            2222222222222222
            <div class="commentbox">
              333333333333
            </div>
          </div>
        </div>
      </body>
    </html>
    
    示例图
    • 数据库存储结构(mongodb)

    mongodb因为是非关系型数据库,所以在存储时对格式没有要求,为了达到查询的方便效果,采用一个商品的评论用一个数组接收,数组的首个评论是评论商品,接着的评论是评论评论的,使用“盖楼”的形式将这些评论嵌套显示出来。

    相关文章

      网友评论

          本文标题:0822_评论

          本文链接:https://www.haomeiwen.com/subject/rhwgsttx.html