restful接口的url定义
通过一行 router.resources
实现增删改查涉及到的全部请求
- 不同的请求方法 通过名称对应 控制器里的方法:
- index方法对应get请求fruits页面
- new方法对应fruits下的添加水果列表页面
//fruits下的添加水果列表页面
async new(){
this.ctx.body = `
<form method = 'post' action='/createfruit'>
<input name='fruitname'></input>
<input type='submit'></input>
</form>
`
}
4. create对应post请求,且重定向redirect
跳转到水果列表主页面
// post请求给水果列表添加水果
async create(){
// !! this.ctx.request.body
let fruit2 = this.ctx.request.body
FruitList.push(fruit2.fruitname)
// this.ctx.body = `添加成功`
this.ctx.redirect('/fruits2')
}