简介 目录 评价 推荐
  • 慕仔330277 2022-01-07

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    Egg.js 框架

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    ejs


    <ul>

        <%for(var i=0;i<list.length;i++){%>

            <li><%= list[i] %></li>

        <%}%>

    </ul>

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    await ctx.render('index.html',{res});

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    const res = await ctx.service.product.index();

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    postman


    body-->raw-->JSON

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    "/details/:id"                  ctx.params.id

    "/details/?name=mono" ctx.query.name

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    'use strict';

    const Controller = require('egg').Controller;


    class ProductController extends Controller {};


    module.exports = ProductController;

    0赞 · 0采集
  • 慕村5319408 2021-11-29

    内置多进程管理?

    0赞 · 0采集
  • 一路1234 2021-04-06

    目录

    截图
    0赞 · 0采集
  • 一路1234 2021-04-06

    涉及技术点

    0赞 · 0采集
  • 一路1234 2021-04-06

    Egg.js特性

    0赞 · 0采集
  • 一路1234 2021-04-06

    基础功能讲解

    截图
    0赞 · 0采集
  • 一路1234 2021-04-06

    Egg.js入门课程

    截图
    0赞 · 0采集
  • 斜杠男人 2020-12-01

    web安全概念

    截图
    0赞 · 0采集
  • 慕无忌3182659 2020-08-03

    老师讲的重点是什么呢

    0赞 · 0采集
  • Keily 2020-06-26
    创建vuecli脚手架项目,安装vant组件包
    截图
    0赞 · 0采集
  • 木子小7 2020-05-17

    public:存放所有的静态资源。

    0赞 · 0采集
  • 木子小7 2020-05-17

    Router用来主要用来描述URL和具体承担执行动作的Controller的对应关系,用于统一路由规则。所以关于路由的配置都会放在app/router.js下面。

    controller下面主要是放各个业务逻辑,比如,首页模块、用户模块、商品模块。

    0赞 · 0采集
  • 木子小7 2020-05-16

    app:项目的核心目录,存放开发的业务逻辑和数据库的操作。

    config:对Egg.js的一些插件进行配置。

    test:进行单元测试时,使用的。

    package.json中在scripts下有两个启动命令start和dev,dev比较适合在开发环境中使用,start适合在实际生产项目中使用。

    0赞 · 0采集
  • UFO2015 2020-05-11

    CORS


    vue proxy server

    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    https://youzan.github.io/vant/#/zh-CN/tabbar#lu-you-mo-shi

    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    [Button.name]: Button

    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    router-view

    截图
    0赞 · 0采集
  • UFO2015 2020-05-10
    import Vue from 'vue'import VueRouter from 'vue-router'Vue.use(VueRouter)


    0赞 · 0采集
  • UFO2015 2020-05-10

    vue-router

    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    ```sh

    # vant ui

    $ yarn add vant


    $ yarn add -D babel-plugin-import


    ```

    https://github.com/Brooooooklyn/ts-import-plugin


    ## .babelrc


    ```js

    {

    "plugins": [

    ["import", {

    "libraryName": "vant",

    "libraryDirectory": "es",

    "style": true

    }]

    ]

    }



    // import { Button } from 'vant';


    ```



    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    vue -h

    vue -V


    3.7.0


    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    Vant UI


    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    'use strict';


    // import { log } from '../utils/log';

    const log = console.log;


    const Controller = require('egg').Controller;


    class HomeController extends Controller {

    async index() {

    const { ctx } = this;

    const {

    // query,

    // params,

    // request,

    // response,

    // app,

    // originalUrl,

    // req,

    // res,

    // socket,

    // service,

    render,

    } = ctx;

    log(`render =\n`, render)

    // render =

    // render(...args) {

    //   return this.renderView(...args).then(body => {

    //     this.body = body; // 不需要 ctx.body = html

    //   });

    // }

    // 不支持 render 结构???

    // const html = await render('index.html');

    const uid = 123;

    // const html = await ctx.render('index.html', { uid });

    // ctx.body = html

    // await ctx.render('home.ejs', {

    //   uid,

    // });

    await ctx.render('index.html', {

    uid,

    });

    // await ctx.render('index.html');

    // ctx.body = 'hi, egg';

    }

    }


    module.exports = HomeController;



    截图
    0赞 · 0采集
  • UFO2015 2020-05-10

    // ctx.body = ctx.render('index.html');

    const uid = 123;

       ctx.body = ctx.render('index.html', uid);


    截图
    0赞 · 0采集
数据加载中...
开始学习 免费