美文网首页
Markdown 示例

Markdown 示例

作者: 建博姓李 | 来源:发表于2017-06-15 12:21 被阅读0次

    subject1

    subject2

    pppppp

      $a = 0;
      $b = 1;
      echo $a.$b;
    
      funciton($a, $b){
        echo $a;
      }
    
      class myClass{
    
      }
    
    var myapp = new Vue({
      el: '#app',
      data:{
        message:''
      }
    });
    
    <script id="my-toc" type="text/x-markdown">
    - [Install](/install)
    - [Guide](/guide)
      - [How to do A](/guide/how-to-do-a)
      - [How to do B](/guide/how-to-do-b)
    </script>
    <script>
      docute.init({
        toc: document.getElementById('my-toc').textContent
      })
    </script>
    
    

    接口名:
    地址:/api/car

    参数 描述
    id 1 车辆的ID号
    id 1 车辆的ID号
    id 1 车辆的ID号

    数据字典

    字段名 变量 类型 默认 描述
    ID id bigint(20) 10000 主键,自增,唯一
    UUID uuid varchar(250)
    名字 name varchar(25) 昵称
    性别 sex char(2) 男,女
    头像 avatar varchar(25) 头像地址
    级别 level tinyint
    粉丝数 fans bigint(20)
    关注数 follow bigint(20)
    生日 brithday date
    手机号 telephone varchar(20)
    微信绑定 iswx varchar(250)
    微博绑定 iswb varchar(250)
    QQ绑定 isqq varchar(250)
    邮箱 email varchar(250)
    密码 password varchar(250) 加密算法md5或crypt
    token token varchar(250) md5加密字段
    是否已删除 is_del boolean 0 0=未删除;1=已删除
    创建时间 created_at datetime CURRENT
    更新时间 updated_at timestamp CURRENT ON UPDATE

    In 2.2.0, this hook also captures errors in component lifecycle hooks. Also, when this hook is undefined, captured errors will be logged with console.error instead of crashing the app.

    相关文章

      网友评论

          本文标题:Markdown 示例

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