上一页 1 2 3 4 5 6 7 8 ··· 28 下一页
摘要: 开启 忘记账号密码(返回账号,password 修改为预设密码) 阅读全文
posted @ 2019-12-31 18:26 jzfan 阅读(824) 评论(0) 推荐(0) 编辑
摘要: SELECT count(`read` = 0 or null) AS newMessage, receiver,content,newTable.inputTime, u.name, u.img FROM (SELECT receiver_id as receiver,content,`read`,inputTime FROM chat WHERE (sender_id = 91) AND (r 阅读全文
posted @ 2019-12-10 00:44 jzfan 阅读(743) 评论(0) 推荐(0) 编辑
摘要: pm.test("Status code is 200", function () { pm.response.to.have.status(200); }); var data = JSON.parse(responseBody); pm.environment.set("token", data.result.token); 阅读全文
posted @ 2019-11-22 21:46 jzfan 阅读(599) 评论(0) 推荐(0) 编辑
摘要: server { listen 80 default_server; listen [::]:80 default_server; server_name _; root /www/web; index index.html index.php; location / { index index.... 阅读全文
posted @ 2019-10-18 16:46 jzfan 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 动态调整font-size 阅读全文
posted @ 2019-10-14 10:04 jzfan 阅读(372) 评论(0) 推荐(0) 编辑
摘要: class CategoryController extends Controller { public function index() { $rootCats = Category::where('parent_id', null)->get(); return $this->tree($rootCats); } priv... 阅读全文
posted @ 2019-10-04 21:55 jzfan 阅读(148) 评论(0) 推荐(0) 编辑
摘要: orderBy(\DB::Raw('case when avatar_id = 0 then 0 else 1 end')) Doctor::join('users', 'doctors.user_id', '=', 'users.id') ->with('user') ->withCount('services', 'notebooks') ->orderByDesc('notebooks_co 阅读全文
posted @ 2019-09-30 18:49 jzfan 阅读(1238) 评论(0) 推荐(0) 编辑
摘要: git clone xxxxxxx.git git checkout -b feature-A develop git add feature-A git commit -m "add feature A" git checkout develop git pull origin develop git checkout feature-A git rebas... 阅读全文
posted @ 2019-09-25 12:01 jzfan 阅读(988) 评论(0) 推荐(0) 编辑
摘要: # 回车并输入在/etc/mysql/debian.cnf中的密码 $ mysql -u debian-sys-maint -p # 登录以后执行以下SQL语句 mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456'; mysql> quit; 阅读全文
posted @ 2019-09-20 14:28 jzfan 阅读(2906) 评论(0) 推荐(0) 编辑
摘要: kill 80 端口进程 阅读全文
posted @ 2019-09-18 11:55 jzfan 阅读(444) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 28 下一页