当前位置:网站首页>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文件,实现模块化
边栏推荐
- 路由----router
- EA谈单机游戏:仍是产品组合中极其重要的部分
- DataFrame在指定位置插入行和列
- Data source object management Druid and c3p0
- Game Thinking 19: Multi-dimensional calculation related to games: point product, cross product, point-line-surface distance calculation
- ps怎么替换颜色,自学ps软件photoshop2022,ps一张图片的一种颜色全部替换成另外一种颜色
- 彩绘漂亮MM集
- Insights in programming
- 每一个女孩曾经都是一个没有泪的天使
- 在ASP控制数字及字母输入
猜你喜欢
随机推荐
Green Apple Forum reopens
What is the connection and difference between software system testing and acceptance testing? Professional software testing solution recommendation
路由----router
Vulnhub target drone: HA_ NARAK
强网杯2022 pwn 赛题解析——house_of_cat
Data source object management Druid and c3p0
[NOIP2010 提高组] 机器翻译
unity 头发的渲染
请问my sql如何把两个表的内容集合在一起啊?
The toss of MM before going to the street (interesting)
Qt writes custom controls: one of the text spotlight effects
Ethernet Principle
The magic weapon for small entrepreneurs!
pnpm 是凭什么对 npm 和 yarn 降维打击的
Fiddler工具讲解
存储过程编写经验和优化措施
JVM运行流程,运行时数据区,类加载,垃圾回收,JMM解析
【结构体内功修炼】结构体实现位段(二)
SVG big fish eat small fish animation js special effects
JS语法使用