会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
爱尚丽明
博客园
首页
新随笔
联系
管理
订阅
1
2
3
4
5
···
8
下一页
2023年4月10日
ios appStore上架审核通过后,appStore搜索不到该应用
摘要: 问题描述:前两天上架一款ios App,周一到公司看审核已经通过了。去appStore上搜索一直搜索不到,ios appStore connect点击提示该商品在中国大陆没有上架。解决方法:通过app store connect 最下面的联系我们。联系苹果相关人员。 说的是因为没有设置价格造成的。设
阅读全文
posted @ 2023-04-10 17:27 爱尚丽明
阅读(942)
评论(0)
推荐(0)
2023年3月9日
vue3+electron 搭建项目遇到的问题
摘要: 参考文档: https://blog.csdn.net/qq_37460847/article/details/126918641 1、使用18.12.1 node版本 使用nvm管理node 版本 参考:https://www.cnblogs.com/aishangliming/p/1702354
阅读全文
posted @ 2023-03-09 13:53 爱尚丽明
阅读(93)
评论(0)
推荐(0)
2023年3月7日
git常用命令
摘要: git init // 初始化 在工作路径上创建主分支 git clone 地址 // 克隆远程仓库 git clone -b 分支名 地址 // 克隆分支的代码到本地 git status // 查看状态 git add 文件名 // 将某个文件存入暂存区 git checkout -- file
阅读全文
posted @ 2023-03-07 16:18 爱尚丽明
阅读(17)
评论(0)
推荐(0)
2023年2月21日
vue项目全局事件总线
摘要: 步骤一:main.js new Vue({ beforeCreated(){ //全局事件总监 Vue.prototype.$bus = this } }) //监听地方回调 this.$bus.$on('监听的名字',(data) => { //这里是获取到监听数据 }) 页面卸载的时候使用$of
阅读全文
posted @ 2023-02-21 22:47 爱尚丽明
阅读(14)
评论(0)
推荐(0)
2023年2月13日
前端APP版本号对比判断是否需要更新
摘要: function compareVersion(newVersion, currentVersion) { const v1 = newVersion.split('.'); const v2 = currentVersion.split('.'); for (let i = 0; i < v1.l
阅读全文
posted @ 2023-02-13 17:34 爱尚丽明
阅读(116)
评论(0)
推荐(0)
2023年1月3日
nvm-windows下载管理node版本工具
摘要: 1、下载地址: https://github.com/coreybutler/nvm-windows/releases 2、nvm常用指令: 配置nvm的镜像服务器 nvm node_mirror https://npmmirror.com/mirrors/node/ 1> nvm list 显示已
阅读全文
posted @ 2023-01-03 22:49 爱尚丽明
阅读(738)
评论(0)
推荐(0)
2022年9月8日
vue 盒子超出自动滚动组件
摘要: https://www.jianshu.com/u/fbc86bb04124
阅读全文
posted @ 2022-09-08 14:18 爱尚丽明
阅读(680)
评论(0)
推荐(0)
2022年8月5日
uni-app、微信小程序返回某一页并执行某页面的方法
摘要: let pages = getCurrentPages(); // 当前页面 let beforePage = pages[index]; // 需要执行方法的页面 wx.navigateBack({ delta: pages.length - 1, //返回到需要执行方法的页面 success()
阅读全文
posted @ 2022-08-05 17:34 爱尚丽明
阅读(1743)
评论(0)
推荐(0)
2022年7月7日
项目中element-ui需要自动聚焦处理方法
摘要: 方法一:自定义指令 // 自定义聚焦指令 Vue.directive('focus1', { // 指令的定义 inserted: function (el) { // 聚焦元素 el.querySelector('input').focus() } })//使用方法<el-input v-focu
阅读全文
posted @ 2022-07-07 09:20 爱尚丽明
阅读(647)
评论(0)
推荐(0)
2022年4月19日
vue 数组变化页面没有实时刷新问题
摘要: 方法一:清空后使用setTimeout重新赋值 方法二:渲染模块的父元素添加动态 :key 方法三:this.$set
阅读全文
posted @ 2022-04-19 11:53 爱尚丽明
阅读(527)
评论(0)
推荐(0)
1
2
3
4
5
···
8
下一页
公告