摘要:
1、安装node.js(https://nodejs.org/en/)官网 2、打开微信小程序的开发工具,进入项目。在项目的根目录文件上点击右键。选择在终端中打开。 npm init。然后所有配置都按默认配置进行,只需点击回车键即可。当提示“Is this OK?<yes>”时,我们只需点击回车即可 阅读全文
摘要:
const url = this.APIurl.API.api;const token = this.GLOBAL.token; this.$http({ type: "GET", url, headers: {'token': token} }).then(response => { consol 阅读全文
摘要:
main.js import global_ from '../src/views/components/Global.vue'//引用文件 Vue.prototype.GLOBAL = global_; Global.vue <script> const token='12345678'; exp 阅读全文
摘要:
安装 npm install vue-resource --save 引入【main.js】 // 引入vue-resource import VueResource from 'vue-resource' // 使用vue-resource Vue.use(VueResource) mounted 阅读全文
摘要:
@selection-change="handleSelectionChange"多选框被选中时触发@row-click=“textRowClick” 行点击被触发 <el-table :data="textDocList" border style="width: 100%" @selection 阅读全文
摘要:
1 在样式外新增一个样式不添加scoped <style> .my{ margin: 20px; } .my .el-input__inner{ border-radius: 15px;/* 这个样式起效果 */ } </style> <style scoped> .my .el-input__in 阅读全文
摘要:
<el-menu :default-active="element.active" :router="element.router" > <el-menu-item style="margin-left: 150px;" index="/index">首页</el-menu-item> <el-me 阅读全文
摘要:
charAt()var str="hellow";str.charAt(1)返回的值是e toUpperCase()var str="helloow";str.toUpperCase()返回的值是HELLOOW 阅读全文
摘要:
split(): 方法用于把一个字符串分割成字符串数组。reverse(): 方法用于颠倒数组中元素的顺序。join() :方法也就是把数组中的所有元素以字符串的形式输出 例子 输入 'Hello Vue.js!' 输出 '!sj.euV olleH' 阅读全文
摘要:
1、解决页面堵塞的问题 如果放在开头要加载完js文件之后才有能成功页面跳转,当js比较大时(从服务器下载下来比较慢)这时候就会有页面堵塞问题,就是迟钝一会才进行页面跳转。 2、无法获取对象的情况 js里面有一些获取对象的函数,但是如果js放在开头,DOM元素还没加载,js就会出现无法获取对象的情况, 阅读全文