摘要: https://view.officeapps.live.com/op/view.aspx?src= 阅读全文
posted @ 2021-02-19 15:39 _Iniesta 阅读(61) 评论(0) 推荐(0) 编辑
摘要: <iframe width="520" scrolling="no" height="25" frameborder="0" allowtransparency="true" src="//i.tianqi.com/index.php?c=code&id=1&color=%23FFFFFF&icon 阅读全文
posted @ 2020-10-22 08:21 _Iniesta 阅读(107) 评论(0) 推荐(0) 编辑
摘要: let nameList = [ '赵', '钱', '孙', '李', '周', '吴', '郑', '王', '冯', '陈', '褚', '卫', '蒋', '沈', '韩', '杨', '朱', '秦', '尤', '许', '何', '吕' 阅读全文
posted @ 2020-05-21 08:57 _Iniesta 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 第一步,为避免冲突需要先同步下远程仓库 git pull 第二步,在本地项目目录下删除缓存 git rm -r --cached . 第三步,再次add所有文件 输入以下命令,再次将项目中所有文件添加到本地仓库缓存中 第四步,添加commit,提交到远程库 git commit -m "同步igno 阅读全文
posted @ 2020-03-03 17:33 _Iniesta 阅读(798) 评论(0) 推荐(0) 编辑
摘要: 1.新建 vue.config.js 2.资源路径问题,插入一句代码就好了 module.exports = { publicPath: './' }; 阅读全文
posted @ 2020-02-26 17:25 _Iniesta 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://www.cnblogs.com/haimishasha/p/6351403.html 天气接口 聚合数据: http://op.juhe.cn/onebox/weather/query 用例 官方文档 来源:weather.com 百度接口: http://api.map.b 阅读全文
posted @ 2020-02-21 16:06 _Iniesta 阅读(700) 评论(0) 推荐(0) 编辑
摘要: <div :class="['div',div?'big':'small']" id="div"></div> <button @click="changediv">按钮</button> <button @click="changetext">按钮2</button> .div { backgro 阅读全文
posted @ 2020-02-21 09:45 _Iniesta 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 基础: module.exports = { // 选项... } 使用publicPath找到服务端的路径 ( 后端api和项目在同一目录下 ) module.exports = { publicPath: './' } 构建项目时打包的位置 module.exports = { outputDi 阅读全文
posted @ 2020-02-20 14:30 _Iniesta 阅读(1732) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>canvas验证码</title> <style> .input-val { width: 200px; height: 32px; border: 1px s 阅读全文
posted @ 2020-02-19 11:36 _Iniesta 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 1.去微信公众平台进入 “公众号设置” 的 “功能设置” 里 “填写js接口安全域名”。 2.引入js文件 在需要调用JS接口的页面引入如下JS文件,(支持https):http://res.wx.qq.com/open/js/jweixin-1.6.0.js 如需进一步提升服务稳定性,当上述资源不 阅读全文
posted @ 2020-02-18 22:16 _Iniesta 阅读(384) 评论(0) 推荐(0) 编辑