上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页
摘要: 转载:git信息查看 git help git version # Display the version of git. git help # Prints the synopsis and a list of the most commonly used commands. git help g 阅读全文
posted @ 2022-09-06 21:04 小超不挑食 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 前端模块 前端模块主要由周周(另一个项目成员)参与设计,这里不详细介绍,仅简单介绍一下目录文件: 渲染模板(./templates) 前端配置文件(./public) 阅读全文
posted @ 2022-09-05 14:01 小超不挑食 阅读(16) 评论(0) 推荐(0) 编辑
摘要: git fetch 和 git pull 都是从远程分支拉去更新本地的命令。 1、git fetch 相当于是从远程获取最新版本到本地,不会自动merge 命令流程如下: 首先从远程的origin的master主分支下载最新的版本到origin/master分支上 然后比较本地的master分支和o 阅读全文
posted @ 2022-09-02 11:15 小超不挑食 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1、首页路由(routes/home.js) 首页路由: 首页(/):请求类型 get // 首页模块 routes/home.js const Router = require('koa-router'); const router = new Router(); const dataServic 阅读全文
posted @ 2022-08-29 11:23 小超不挑食 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1、用户业务接口(services/user.js) 用户相关业务: 注册账号 登录账号 查看用户信息 修改个人资料 点击查看代码 // 用户相关业务 const sequelize = require('../shared/sequelize'); const User = sequelize.i 阅读全文
posted @ 2022-08-28 19:13 小超不挑食 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 17 下一页