会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
海乐学习-专业呼叫中心解决方案
承接电话呼叫中心,电话销售系统,电话录音系统等各种电话相关的软硬件项目。 QQ:29845615 微信:13941128270
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
22
23
24
25
26
27
28
29
30
···
76
下一页
2023年3月6日
C# 获取一个目录下的所有文件和文件夹的集合
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; //文件夹列表 private static List<string> DirectorysList = new List<stri
阅读全文
posted @ 2023-03-06 10:18 海乐学习
阅读(493)
评论(0)
推荐(0)
2023年3月3日
C# 判断JObject的键值是否存在
摘要: using Newtonsoft.Json.Linq; using Newtonsoft.Json; JObject json1 = (JObject)JsonConvert.DeserializeObject(strJson); string event1 = json1["event"].ToS
阅读全文
posted @ 2023-03-03 16:47 海乐学习
阅读(1020)
评论(0)
推荐(0)
2023年2月25日
win10系统设置开机启动项
摘要: win10系统设置开机启动项的方法 按下Win+R组合键打开运行窗口,输入: %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 点击确定 将需要开机自动运行的任意东西,程序、文件夹都可以 对于所有用
阅读全文
posted @ 2023-02-25 12:32 海乐学习
阅读(574)
评论(0)
推荐(0)
2023年1月31日
Git 提交时出错 No supported authentication mdthods available (server sent:publickey)
摘要: No supported authentication mdthods available (server sent:publickey) 这个问题是 key 没有配置 解决方法 URL 在 gitee码云 仓库中得到
阅读全文
posted @ 2023-01-31 11:25 海乐学习
阅读(226)
评论(0)
推荐(0)
Vue 编译时出错 Error: Cannot find module ‘@vue/cli-plugin-babel‘
摘要: 在使用npm run serve命令启动项目时,报找不到某个model的错误 解决方法 1.把原本已生成的node-models删除 (若本身就没有,就不用删除了) 2.重新使用npm install命令下载依赖 3.重新启动项目,我这里是npm run serve命令启动的
阅读全文
posted @ 2023-01-31 10:40 海乐学习
阅读(3167)
评论(0)
推荐(0)
2023年1月17日
uni-app H5在浏览器上刷新后回登陆页
摘要: 在uni-app 开发项目时,发见一个非常有意思的事情。本身是想 uni-app上加一个外部的配置文件,具体方法详见: https://www.cnblogs.com/hailexuexi/p/16922509.html 当编译后,在www下运行是没有问题的,但如果用浏览器直接打开,偶尔就会出现读配
阅读全文
posted @ 2023-01-17 11:37 海乐学习
阅读(1450)
评论(0)
推荐(0)
2023年1月16日
uni-app 加入打包后 读动态配置文件config.js
摘要: 在 static 目录下 新建一个 config.js 配置文件 在 config.js 文件中写入 config = { //webSocket Url webSocketUrl:"ws://192.168.1.5:5011/chat/", userName: "1001", userTel: "
阅读全文
posted @ 2023-01-16 11:26 海乐学习
阅读(2099)
评论(0)
推荐(0)
2023年1月13日
uni-app 延时执行某个方法的解决方案
摘要: 定义一个 timer data() { return { timer: '', } }, 定时器 this.sendMsg_GetAddressList 为要延时调用的方法 1000 为1秒后执行 methods: { startTimer(){ this.timer = setTimeout(th
阅读全文
posted @ 2023-01-13 15:56 海乐学习
阅读(2978)
评论(0)
推荐(0)
uni-app <template>模板中调用主页的方法
摘要: 模板页 list-tel-card.vue <uni-td align="center"> <view class="uni-group"> <button class="uni-button" size="mini" @click="showMsgList(item.tel)">外呼</butto
阅读全文
posted @ 2023-01-13 15:43 海乐学习
阅读(323)
评论(0)
推荐(0)
uni-app的uni.setStorageSync和uni.setStorage缓存数据
摘要: setStorageSync同步存储 uni.setStorageSync("username","lty") 同步读取 let res=uni.getStorageSync("username") this.username=res setStorage //异步存储 uni.setStorage
阅读全文
posted @ 2023-01-13 15:23 海乐学习
阅读(5227)
评论(0)
推荐(0)
上一页
1
···
22
23
24
25
26
27
28
29
30
···
76
下一页
公告