zoukankan      html  css  js  c++  java
  • egg的基本使用

      一、脚手架(可以快速生成项目)

      1、新建一个项目文件夹,使用如下命令:

      2、npm  init  egg  --type=simple

      3、npm i 它会根据package.json里记录的所需包进行快速安装

      4、npm run dev 启动命令 :默认地址为http://localhost:7001

      二、编写Controller(控制器)

      
    复制代码
     // app/controller/home.js 项目建立完成后,会默认为你配置一个引导式的路由,你只需按着提示,逐步操作
    const Controller = require('egg').Controller;
    class HomeController extends Controller {
    async index() {
    this.ctx.body = 'Hello world';
    }
       async list(){
         const {ctx} = this
         ctx.body='列表页'
       }
    }
    module.exports = HomeController;

    //接着,在此app/router.js文件路径下配置路由,
    module.exports = app => {
     const { router, controller } = app;
     //get请求 router.get('/', controller.home.index);
     router.get('/list',controller.home.list);
     //post请求需要在config/config.default.js配置,这里直接发起 POST 请求会报错:'secret is missing'。
     exports.security = {
      csrf:false
     } 
     router.post('/login',controller.home.login);
    };

      一、脚手架(可以快速生成项目)

      1、新建一个项目文件夹,使用如下命令:

      2、npm  init  egg  --type=simple

      3、npm i 它会根据package.json里记录的所需包进行快速安装

      4、npm run dev 启动命令 :默认地址为http://localhost:7001

      二、编写Controller(控制器)

    // app/controller/home.js 项目建立完成后,会默认为你配置一个引导式的路由,你只需按着提示,逐步操作 const Controller = require('egg').Controller; class HomeController extends Controller { async index() { this.ctx.body = 'Hello world'; }   async list(){     const {ctx} = this     ctx.body='列表页'   } } module.exports = HomeController;//接着,在此app/router.js文件路径下配置路由,module.exports = app => { const { router, controller } = app; //get请求
    router.get('/', controller.home.index); router.get('/list',controller.home.list); //post请求需要在config/config.default.js配置,这里直接发起 POST 请求会报错:'secret is missing'。 exports.security = {  csrf:false }  router.post('/login',controller.home.login); };

  • 相关阅读:
    HashMap深度解析(二)(转)
    HashMap深度解析(一)(转)
    GeoHash核心原理解析(转)
    spring boot 策略模式实践
    Java中CAS详解(转)
    springMVC请求流程详解(转)
    7 vi 编辑器
    Linux 命令行快捷键
    Java
    3 Eclipse 查看不了源码
  • 原文地址:https://www.cnblogs.com/yzy521/p/14131614.html
Copyright © 2011-2022 走看看