上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: 打印效果图: #####1.先贴出print.js // 打印类属性、方法定义 /* eslint-disable */ const Print = function (dom, options) { if (!(this instanceof Print)) return new Print(do 阅读全文
posted @ 2020-08-18 14:11 米牙 阅读(3448) 评论(0) 推荐(0) 编辑
摘要: 1.先装插件:yarn add viewerjs 2.在需要引入插件的代码里写: 1)<div id="img_pre" /> 2)script里头引入这个插件: import Viewer from 'viewerjs'; import "viewerjs/dist/viewer.min.css" 阅读全文
posted @ 2020-08-07 15:41 米牙 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 问题描述:华为手机(或oppo手机)input输入时监听不到,或者监听输入部分缺失 解决方案: 双管齐下,除了bindinput监听输入,再加个bindblur监听失焦,双管齐下,只要失焦就能获取到; 阅读全文
posted @ 2020-08-03 11:52 米牙 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 原因: 1.创建应用时应该时web端而非web服务 2.具体流程 (1)引入项目key (2)写入自定义map的id 阅读全文
posted @ 2020-07-20 16:35 米牙 阅读(1991) 评论(0) 推荐(0) 编辑
摘要: 整理各大主流电子地图坐标拾取系统拾取于此。 百度地图——拾取坐标系统 网址:http://api.map.baidu.com/lbsapi/getpoint/index.html 谷歌地图——自带坐标获取 网址:https://www.google.com/maps/ 操作:右键需要获取坐标的点,点 阅读全文
posted @ 2020-07-10 10:08 米牙 阅读(23040) 评论(0) 推荐(1) 编辑
摘要: 1. const mysql=require("mysql"); const db=mysql.createConnection({ host:"localhost", port:3306, user:'root', password:'123456', database:'blog',//数据库名 阅读全文
posted @ 2020-07-09 18:23 米牙 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 当请求静态资源请求不到时 1.要配置可读取静态资源的文件路径 2.请求静态资源要放在跨域之前(不然先走跨域直接就通不过了,请求头里无origin、referer) 放在app.js //设置静态资源路径 app.use(static( path.join(__dirname, 'public'),{ 阅读全文
posted @ 2020-07-09 17:40 米牙 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 方式一 以流的形式上传图片直接返回路径,这样写: 好处:方便处理存取数据返回路径 不好的地方:可能冗余,上传的文件后面并未使用 1.用koa-body中间件 注:如果已经使用了koa-bodyParser中间件,请remove此中间件,koa-body可以代替koa-bodyParser 在app. 阅读全文
posted @ 2020-07-01 11:38 米牙 阅读(1509) 评论(0) 推荐(0) 编辑
摘要: 代码环境:vue-cli3 前提:由于后台部署服务器带宽太小,拖不起大并发访问,于是将静态资源分离,减轻服务器压力。 结果:打包好后,dist/index.html部署到后台服务器,dist/static部署到oss。 vue.config.js里头 const staticUrl="http:// 阅读全文
posted @ 2020-06-23 16:35 米牙 阅读(450) 评论(0) 推荐(0) 编辑
摘要: cd existing_folder git init git remote add origin http://gitlab.ytbig.cn/wangmin/nb-smart-education-mobile.git git add . git commit -m "Initial commit 阅读全文
posted @ 2020-06-22 09:52 米牙 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页