10.23

作者: greenPLUS | 来源:发表于2018-10-23 09:15 被阅读0次

    一、上传coding的步骤

    1.git init
    2.git add .
    3.git commit -m ''first commit''
    4.git remote add origin http://git.coding.net/anzzhangzx/mogijie.git
    5.git push -u ortgin master
    6.开启psges服务
    

    二、搭建脚手架教程

    //如果没有安装cnpm,先安装cnpm(淘宝镜像)
    1.npm install -g cnpm --registry=https://registry.npm.taobao.org
    //安装 webpack
    2.cnpm inatall webpack -g
    //安装 vue-cli
    3.cnpm install vue-cli -g
    //使用vue-cli搭建项目
    4.vue init webpack demo(项目名称)
    //5.cd 项目名 进入文件夹
    6.检查有没有node-modules文件夹,如果有,直接开服务。如果没有,使用cnpm install命令安装依赖,然后在开启服务
    

    三、安装 axios
    在git里安装npm install axios
    axios的使用

    import axios from 'axios'
    import default{
        data:function(){
              return{
                    txt:null
              }
        },
    methods:{
          
    },
    mounted:function(){
        var self=this;
         axios({
              method:"get",
              url:"../../static/sbsh.json"
          })
    }
    }
    

    四、知识点总结

    
    1.nofocus:获得焦点事件   onblur  失去焦点事件
    2.随机数
    Math.floor(math.random()*(max-min+1)+min)
    3.文字的正则表达式
    [/u4e00-/uqfa5]{2,4}
    4.数字的正则表达式
    /(86+86)1[3,5,6,7,8,9]/d{9}$/
    //第一位:1  第二位:3,5,6,7,8,9
    *:可有可无,多了不限
    +:至少一次,多了不限
    ?:可有可无,最多一次
    

    相关文章

      网友评论

          本文标题:10.23

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