随笔分类 -  JavaScript

摘要:路径操作 var fs = require('fs'); var path = require('path'); var dirName = path.dirname(filePath); var fileName = path.basename(filePath); var newFilePath 阅读全文
posted @ 2023-04-17 09:00 lvye1221 阅读(26) 评论(0) 推荐(0)
摘要:招聘要求 前端工程师:1. 熟练掌握HTML5、CSS3、JavaScript,Ajax,跨域等基础知识;2. 熟练掌握VUE开发框架,熟悉ElementUI、Vant 等UI框架的使用;3. 掌握项目版本控制工具 Git 的使用;4. 有APICloud开发经验更佳; Web前端画图 招聘要求: 阅读全文
posted @ 2023-04-14 16:59 lvye1221 阅读(102) 评论(0) 推荐(0)
摘要:相关资料地址 官网: https://cn.vuejs.org/ 官网教程: https://cn.vuejs.org/v2/guide/ 官网API: https://cn.vuejs.org/v2/api/ 王树东FE10资料: https://github.com/itguide/fe10 ( 阅读全文
posted @ 2023-04-14 10:02 lvye1221 阅读(68) 评论(0) 推荐(0)
摘要:移动端UI库 官网 https://vant-contrib.gitee.io/vant/#/zh-CN/ 之前的旧版本 https://youzan.github.io/vant 创建Vue项目 sudo cnpm install -g @vue/cli # 打开图形化界面 vue ui 图形化项 阅读全文
posted @ 2023-04-14 10:00 lvye1221 阅读(351) 评论(0) 推荐(0)
摘要:<parsererror style="display: block; white-space: pre; border: 2px solid #c77; padding: 0 1em 0 1em; margin: 1em; color: black"> This page contains the 阅读全文
posted @ 2023-04-13 06:49 lvye1221 阅读(100) 评论(0) 推荐(0)
摘要:神通广大的JavaScript https://blog.csdn.net/dongfeng9ge/article/details/77725619 开源的优秀项目 kissy 淘宝开源的全终端项目,目前看到没有再更新了 http://docs.kissyui.com/ 成图库 客户端效果 灯果BI 阅读全文
posted @ 2023-04-12 18:03 lvye1221 阅读(12) 评论(0) 推荐(0)
摘要:实景三维 参考资料 数字三维 安装项目结构 前提软件 TE Pro6.1.1 MK 软件存放目录:/Users/jack/Documents/project/数字三维 三维安装说明: \\192.168.1.103\station-share\高峰3D\数字三维 1、MK.rar解压至本地D: 2、 阅读全文
posted @ 2023-04-12 17:15 lvye1221 阅读(1177) 评论(0) 推荐(0)
摘要:Win10下 安装IIS 控制面板 / Windows 功能 添加如下选项。可以根据自己情况来勾选安装选项,如不清楚,全部勾选即可 Windows 更新来下载相关文件。 如果报错。重新安装一次即可。 https://blog.csdn.net/weixin_41962350/article/deta 阅读全文
posted @ 2023-03-16 14:51 lvye1221 阅读(24) 评论(0) 推荐(0)
摘要:基本信息 官网,要 chrome 才能打开 http://minigame.vivo.com.cn/documents/#/lesson/base/environment vivo api 广告 文档 http://minigame.vivo.com.cn/documents/#/api/ad/ba 阅读全文
posted @ 2023-02-10 11:46 lvye1221 阅读(150) 评论(0) 推荐(0)
摘要:申请 SLL证书 1、打开阿里云官网,注册登录,实名认证 2、点击“产品分类——安全——ssl证书——点击购买证书(去里面选择 免费型DV SSL)——购买完后如下图所示——点击申请” 3、验证方式 : 参考资料中是给的 通过 上传文件的方式实现,不过我这边因为 网站部署了 CDN 刷新很慢,一直没 阅读全文
posted @ 2021-07-07 17:21 lvye1221 阅读(35) 评论(0) 推荐(0)
摘要:Vant 简介 移动端UI库 官网地址: https://youzan.github.io/vant 遇到的问题 生成的app,在手机没有网络的时候,图标加载失败。显示的是一个带 × 的方块,功能显示不正常。 解决办法 https://youzan.github.io/vant/#/zh-CN/ic 阅读全文
posted @ 2019-11-28 22:03 lvye1221 阅读(84) 评论(0) 推荐(0)
摘要:简介 熟悉 Cesium 中提到的 webpack 命令,以及研究如何将 cesium 添加到项目中 官方文章 https://cesium.com/docs/tutorials/cesium-and-webpack/ git 代码仓库地址: https://gitee.com/lvye1221/c 阅读全文
posted @ 2019-10-24 15:10 lvye1221 阅读(42) 评论(0) 推荐(0)
摘要:保存在学习官网绘图示例的笔记 绘图接口 正方体 var box = viewer.entities.add({ name : 'Blue box', position: this.options.position, // 位置 box : { dimensions : new Cesium.Cart 阅读全文
posted @ 2019-08-26 09:58 lvye1221 阅读(86) 评论(0) 推荐(0)
摘要:需求 保存当前场景,后面可恢复到当前一模一样的场景下。 主要步骤 // 保存场景信息 this.options.position = viewer.camera.positionWC.clone(); this.options.up = viewer.camera.up.clone(); this. 阅读全文
posted @ 2019-08-26 09:55 lvye1221 阅读(210) 评论(0) 推荐(0)
摘要:Classification Types (分类类型) 访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=Clustering.html&label=Tutorials 知识点 // 定义多边形 var polygon = view 阅读全文
posted @ 2019-08-19 14:41 lvye1221 阅读(126) 评论(0) 推荐(0)
摘要:Clustering (聚集) 访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=Clustering.html&label=Tutorials 知识点 // 测试过,必须提供 camera 和 canvas 才能正常画出图 // 阅读全文
posted @ 2019-08-19 14:01 lvye1221 阅读(65) 评论(0) 推荐(0)
摘要:Clamp to Terrain 访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=Clamp%20to%20Terrain.html&label=Tutorials 官网中给出的示例: https://cesiumjs.org/C 阅读全文
posted @ 2019-08-19 11:31 lvye1221 阅读(117) 评论(0) 推荐(0)
摘要:访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=GeoJSON%20and%20TopoJSON.html&label=Tutorials 知识点 // Seed the random number generator for r 阅读全文
posted @ 2019-08-16 14:59 lvye1221 阅读(42) 评论(0) 推荐(0)
摘要:访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=3D%20Models.html&label=Tutorials 知识点 var viewer = new Cesium.Viewer('cesiumContainer', { in 阅读全文
posted @ 2019-08-16 11:25 lvye1221 阅读(67) 评论(0) 推荐(0)
摘要:效果 访问地址: http://localhost:8080/Apps/Sandcastle/index.html?src=Camera%20Tutorial.html&label=Tutorials 通过键盘及鼠标控制相机 知识点 // Gets an ellipsoid describing t 阅读全文
posted @ 2019-08-16 10:51 lvye1221 阅读(38) 评论(0) 推荐(0)