logoImgUpload:function(file) { let self = this; self.formatUpload(file); let reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function (e... Read More
import axios from 'axios'; let env = process.env.NODE_ENV; var needLogin = ""; let root = ''; var header=''; if (env === 'development') { console.log("api"); root = ''; } else if (env === '... Read More
以上是用call方法继承Array数组对象的slice方法 Read More
将上述文件放在js文件里 在使用的页面引入(vue) import {conService} from '../../js/contactService.js'; 调用 this.conService(); Read More
移动端页面开发流程 移动端页面布局 一、移动端app分类 1、Native App原生app手机应用程序 使用原生的语言开发的手机应用,Android系统用的是java,ios系统用的是object-C 2、Hybrid App 混合型app手机应用程序 混合使用原生的程序和html5页面开发的手机 Read More
下面是抄过来的,方便自己翻越 webpack4.x入门配置 1、首先npm install webpack webpack-cli webpack-dev-server -g (mac电脑用超级管理员的形式进行安装需要前面加上sudo,Windows 电脑不用加sudo) image.png 1.1 Read More
什么是RequireJs RequireJS 是一个JavaScript模块加载器。 在ES6出现之前,JS不像其他语言同样拥有“模块”这一概念,于是为了支持JS模块化,出现了各种各样的语言工具,如webpack,如ReuqireJS。 为什么使用RequireJS · 模块化:模块化就是将不同功能 Read More
控制多个过渡效果 innerHTML、innerText和outerHTML、outerText的区别 简单的说innerHTML和outerHTML、innerText与outerText的不同之处在于: 1)、innerHTML与outerHTML在设置对象的内容时包含的HTML会被解析,而in Read More
将其在vue目录中用一个js文件存起来,哪个页面需要弹窗时引入 import eduAlert from '@/js/alert.js' 在方法中就可以使用了 alertmethos(){ // eduAlert.showAlert("我很好的的哈哈",null,true); // eduAlert Read More
{ path: '/Index1', name: 'Index', component: () => import ('@/components/Index.vue') }, { path: '/Index1', name: 'Index', component: () => import ('@/ Read More