当前位置:网站首页>Controller-----controller
Controller-----controller
2022-08-05 08:10:00 【cjx177187】
Controller负责解析用户的输入,处理后返回响应的结果.1.所有的Controller 文件都必须放在 app/controller目录下2.支持多级目录,访问时可以通过目录名级联访问.
作用:
- Accepts parameters provided by the user,Then look up the parameters from the database and return them to the user
- 根据用户访问的URlDifferent then renders a different template
- 代理服务:Return the user's request to other servers
模板语法:
//严格模式
'use strict';
//引入egg中Controller属性
const Controller = require('egg').Controller;
//继承Controller这个类
class HomeController extends Controller {
async index() {
const { ctx } = this;//上下问对象
ctx.body = 'hi, egg';
}
}
//导出Controller
module.exports = HomeController;
如果路由是:
router.get('/hello', controller.user.news)
The controller corresponds:
在controller文件夹下有一个user文件中有一个news方法
如果路由是:
router.get('/hello', controller.user.home.news)
The controller corresponds:
在controller文件夹下有一个user文件夹下有一个home文件中有一个news方法
anyn Any type of data can be entered into the function,He will convert himselfJSON数据
this.ctx就是controllerThe provided functions are mainly provided by using it:给前端发送数据,Access plugin functionality
this.ctx.body="hello"====>It will only be executed once and then disconnected
可以再controllerCreate a new one in the folderjs文件,实现模块化
边栏推荐
猜你喜欢

unity 头发的渲染

学习笔记14--机器学习在局部路径规划中的应用

What is a good movie to watch on Qixi Festival?Crawl movie ratings and save to csv file

spark集群部署(第三弹)

Adb authorization process analysis

嵌入式系统:基本定时器

uniapp时间组件封装年-月-日-时-分-秒

v-if/v-else determines whether to display according to the calculation

php fails to write data to mysql

宝塔实测-搭建中小型民宿酒店管理源码
随机推荐
DataFrame insert row and column at specified position
Constellation ideal lover
[Structure internal power practice] Structure memory alignment (1)
CROS和JSONP配置
Green Apple Forum reopens
Adb 授权过程分析
[NOIP2010 提高组] 机器翻译
Access Denied: "microsoft.web.ui.webcontrols" workaround
真正爱你的女人是这样的
egg框架中解决跨域的三种方案
TensorFlow installation steps
嵌入式系统:基本定时器
【结构体内功修炼】结构体内存对齐(一)
2006年星座运势全解-射手
Redis cache and existing problems--cache penetration, cache avalanche, cache breakdown and solutions
支持触屏slider轮播插件
EA谈单机游戏:仍是产品组合中极其重要的部分
ps怎么替换颜色,自学ps软件photoshop2022,ps一张图片的一种颜色全部替换成另外一种颜色
php向mysql写入数据失败
Antdesign a-select 下拉框超出长度换行显示