摘要: 基类(商品类及分类类之间共同的字段) class BaseModle(models.Model): name = models.CharField(max_length=32, unique=True) # 商品分类状态 1为上架 0 为下架 status = models.SmallInteger 阅读全文
posted @ 2020-01-02 22:55 手可摘星辰/* 阅读(633) 评论(0) 推荐(0) 编辑
摘要: vue init webpack 项目名 cd 项目名 安装axios 用于前端交互 npm install axios npm install 启动项目 npm run dev 阅读全文
posted @ 2020-01-02 20:50 手可摘星辰/* 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 创建django 项目 创建应用 例app01 配置settings.py文件 注册应用(app01及rest_framework) INSTALLED_APPS = [ ... 'rest_framework', 'app01' ... ] 注释csrf中间件 #中间件 MIDDLEWARE = 阅读全文
posted @ 2020-01-02 20:37 手可摘星辰/* 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 首先安装axios npm install axios 其次在config下的index.js中修改proxyTable proxyTable: { '/api': { target:'http://127.0.0.1:8000', // secure: false, // 如果是https接口,需 阅读全文
posted @ 2020-01-02 00:17 手可摘星辰/* 阅读(5432) 评论(0) 推荐(0) 编辑