编程技术共17篇
编程技术分享
Vue - H函数中值的双向绑定-祥拓软件

Vue – H函数中值的双向绑定

下方代码中的Input为第三方组件库的组件,需要先引入h(Input, { placeholder: '请输入新的名称', 'onUpdate:modelValue': (value) => { // 此处的value就是最新的值了 } }, [])
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件11个月前
02391
ZLMediaKit编译(Ubuntu 22)-祥拓软件

ZLMediaKit编译(Ubuntu 22)

github地址:https://github.com/ZLMediaKit/ZLMediaKit安装依赖sudo apt-get update sudo apt-get install build-essential -y sudo apt-get install cmake -y sudo apt-get install libssl-de...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件11个月前
02971
WebRtc之HTML推流控制码率范围-祥拓软件

WebRtc之HTML推流控制码率范围

首先获取摄像头的流,请在 localhost 或者 https 环境下获取navigator.mediaDevices.getUserMedia({video: true, audio: true}).then(stream => { })创建RTCPeerConnection,并将获取到的流...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件4个月前
0410
MySQL密码过期-祥拓软件

MySQL密码过期

进入安全模式mysqld --skip-grant-tables 修改密码use mysql; update user set password=password('123') where user='root'; flush privileges; exit; 
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件6个月前
0360
windows启动jar乱码-祥拓软件

windows启动jar乱码

启动脚本修改为:chcp 65001 title xxxx java -Dfile.encoding=utf-8 -jar -Xmx2048M -Xms512M xxx.jar 
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件7个月前
0360
Mac中redisson启动报错-祥拓软件

Mac中redisson启动报错

redisson的配置:redis: config: | singleServerConfig: idleConnectionTimeout: 10000 connectTimeout: 10000 timeout: 3000 retryAttempts: 3 retryInterval: 1500 password: null subscripti...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件8个月前
0560
Electron loadFile加载路由-祥拓软件

Electron loadFile加载路由

开发模式:window.loadURL(process.env['ELECTRON_RENDERER_URL'] + '/#/xxxx')打包后:window.loadFile(join(__dirname, '../renderer/index.html'), { hash: 'xxx' }) 
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件8个月前
0710
AJ-Captcha vue2/3前端通用代码-祥拓软件

AJ-Captcha vue2/3前端通用代码

AJ-Captcha gitee地址:https://gitee.com/anji-plus/captcha下载附件里的代码,解压放置对应的项目组件目录下修改 api/index.js 里的 request 函数为项目本身的axios,及对应的后端地址如果没...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件11个月前
0840
Vite 单JS文件批量打包-祥拓软件

Vite 单JS文件批量打包

文件目录如下:lib下的目录是要打包成单个js的源文件更改package.json{ 'name': 'xt-plugin-auth', 'version': '1.0.0', 'main': 'index.js', 'license': 'MIT', 'type': 'module', 'scripts': ...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件11个月前
0740
Solon 关于插件 dami 反射方法参数名称错误-祥拓软件

Solon 关于插件 dami 反射方法参数名称错误

由于某种原因(暂不清楚)导致在如下代码:@DamiTopic('demo82.event.user') public interface EventUserNotices { void onCreated(long userId, String name); } @DamiTopic('demo82.event.use...
祥拓软件的头像-祥拓软件赞助钻石会员祥拓软件11个月前
04430