05 2018 档案
摘要:今天在开发登录页时,需要设置登录输入框的长度,输入类型为number <input type="number" maxlength="11" placeholder="请输入手机号"> 发现在这样写时,输入长度限制并没有生效,经过测试发现在type为number或者text时,设置maxlength
阅读全文
摘要:最近在使用vue写webapp在,一些感觉比较有意思的分享一下。 1:input输入框: <input class="s-search-text" placeholder="猜你喜欢我们" id="s-search-text" ref="searchval" v-model="message" @k
阅读全文
摘要:1:更新现有包 sudo apt-get update 2:安装依赖 sudo apt-get install vim openssl build-essential libssl-dev wget curl 3:安装nvm,管理服务器上的node版本 curl -o- https://raw.gi
阅读全文
摘要:最近在使用vue过程中,使用axios进行接口请求,确发现取不到值,返回为undefined。 在vue中,this都指向vue,然而在axios中,this却指向axios,因此需要使用箭头函数,不进行this的绑定
阅读全文