摘要: 安装: 当前版本的QQ Linux版依赖gtk2.0,安装QQ Linux版前请确保你的系统已安装gtk2.0。以下是一些使用命令行安装gtk2.0的例子: sudo apt install libgtk2.0-0 # Ubuntusudo yum install gtk2.x86_64 # cen 阅读全文
posted @ 2022-10-20 23:43 バカなの 阅读(392) 评论(0) 推荐(0) 编辑
摘要: sudo -s 阅读全文
posted @ 2022-10-20 23:39 バカなの 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 启动服务端:进入 music-server 文件夹,运行下面命令启动服务器 // 方法一 ./mvnw spring-boot:run // 方法二 mvn spring-boot:run // 前提装了 maven 启动客户端:进入 music-client 目录,运行下面命令 npm insta 阅读全文
posted @ 2022-05-04 20:23 バカなの 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 打开项目package.json文件: 在scripts:{}中压根没有dev属性, 故这里把dev改成serve, 即运行npm run serve (或者把"serve":改成"dev":)。 阅读全文
posted @ 2022-03-22 16:58 バカなの 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 4-IE缓存问题.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>IE缓存问题</title> <style> #result{ width:200px; height:100px; border: 阅读全文
posted @ 2022-01-29 17:38 バカなの 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 平时我们修改服务端代码,都需要手动在终端重启server.js服务来更改页面响应. 使用以下代码: node server.js 而nodemon工具可以简化操作,帮我们自动重启服务. 1.安装 npm install -g nodemon 如果报错就在开头加上sudo: sudo npm inst 阅读全文
posted @ 2022-01-29 17:03 バカなの 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 3-JSON.html('手动转换'由服务端发来的数据) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Json响应</title> <style> #result{ width:200px; height 阅读全文
posted @ 2022-01-29 15:53 バカなの 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 1-GET.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Ajax GET请求</title> <style> #result{ width:200px; height:100px; border 阅读全文
posted @ 2022-01-28 15:50 バカなの 阅读(1106) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Ajax GET请求</title> <style> #result{ width:200px; height:100px; border:solid 1px 阅读全文
posted @ 2022-01-24 19:03 バカなの 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 注: 在真实开发中,我们并不会用以下方式开发组件,而是采用vue-cli创建.vue模板文件的方式开发,以下方法只是为了让大家理解什么是组件。 说明: Vue.component(): 注册组件 my-component-li: 自定义组件的名字 template: 组件的模板 使用props组件传 阅读全文
posted @ 2022-01-22 22:58 バカなの 阅读(288) 评论(0) 推荐(0) 编辑