小白兔晒黑了

导航

 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页

2021年10月24日

摘要: 1 启动项目 D:\seckill\pro\index.php <?php use Swoole\Http\Request; use Swoole\Http\Response; $http = new Swoole\Http\Server("0.0.0.0",80); $http->on('requ 阅读全文
posted @ 2021-10-24 01:30 小白兔晒黑了 阅读(277) 评论(0) 推荐(0) 编辑
 

2021年10月22日

摘要: 0 视频地址 https://www.bilibili.com/video/BV14E411t7T4?p=1 1 制作一个带swoole的镜像 1.1 下载官方php镜像 docker pull php:7.3-alpine3.8 1.2 创建容器 docker run -it --name tes 阅读全文
posted @ 2021-10-22 21:41 小白兔晒黑了 阅读(171) 评论(0) 推荐(0) 编辑
 
摘要: 1 查看主机的ip 1 查看ssh服务有没有开启 systemctl status sshd.service 2 查看22端口是否开启 ss -lnt 3 查看ip ip a lo 回环设备 就是本机自己 enp0s25 这个是有线网卡,目前我见到的有线网卡几乎都是 enp 开头,老版本中才会有 e 阅读全文
posted @ 2021-10-22 18:40 小白兔晒黑了 阅读(233) 评论(0) 推荐(0) 编辑
 

2021年10月20日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <label v-for="(item,key) in originHo 阅读全文
posted @ 2021-10-20 14:23 小白兔晒黑了 阅读(95) 评论(0) 推荐(0) 编辑
 

2021年9月15日

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="app"> <ul> <li v-for="(movie,index) in mov 阅读全文
posted @ 2021-09-15 01:08 小白兔晒黑了 阅读(374) 评论(0) 推荐(0) 编辑
 

2021年8月18日

摘要: 1 火狐 阅读全文
posted @ 2021-08-18 00:40 小白兔晒黑了 阅读(121) 评论(0) 推荐(0) 编辑
 

2021年8月12日

摘要: 1 \database\migrations\2021_08_05_222058_create_messages_table.php public function up() { Schema::create('messages', function (Blueprint $table) { $ta 阅读全文
posted @ 2021-08-12 01:39 小白兔晒黑了 阅读(38) 评论(0) 推荐(0) 编辑
 

2021年8月11日

摘要: 代码 mounted(){ // 隐藏模态框 清空内容 $('#modal-send-message').on('hidden.bs.modal', function (){ document.getElementById("form").reset(); //$('#message_text'). 阅读全文
posted @ 2021-08-11 01:34 小白兔晒黑了 阅读(577) 评论(0) 推荐(0) 编辑
 

2021年8月10日

摘要: 官方文档 https://github.com/barryvdh/laravel-debugbar 安装与使用 https://blog.csdn.net/leo09999/article/details/98946737 我的5.8版本不用配置,安装后可以直接用 "require-dev": { 阅读全文
posted @ 2021-08-10 01:12 小白兔晒黑了 阅读(152) 评论(0) 推荐(0) 编辑
 

2021年8月5日

摘要: 1 创建表 php artisan make:model Vote -m public function up() { Schema::create('votes', function (Blueprint $table) { $table->bigIncrements('id'); $table- 阅读全文
posted @ 2021-08-05 00:12 小白兔晒黑了 阅读(26) 评论(0) 推荐(0) 编辑
 
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 27 下一页