-
-
啥时候支持koa2呢
-
my code is simple:
```
const nodeMonkey = require('node-monkey');
const Koa = require('koa');
nodeMonkey();
const app = new Koa();
app.use((ctx) => {
let url = ctx.request.url;
ctx.bod…
-
最近在用koa2和xtpl,但发现用include的时候达不到效果,也看不到什么报错信息,用法很简单,只是简单的{{include ("sub.xtpl") }},子sub.xtpl也存在。
-
为什么这样做:Express、Koa2:开发环境使用Express,生产环境使用Koa2?
-
# 深入浅出 Koa2
说在前面的话:本文针对对koa1非常了解并学习过源码或者阅读过我[上篇koa文章](https://github.com/berwin/Blog/issues/8)的同学阅读~
吸取之前的经验,本章用幽默的风格来分析又臭又硬的原理,我尽量用最通俗易懂的语言来描述复杂的逻辑。
前几天koa发布了2.0版本。这几天找了个不忙的时间,赶紧阅读了2.0的文档和源码…
-
Hi guys,
I'm trying to tweak this example to work with Koa2
https://github.com/kristianmandrup/vue-hackernews-2.0
However I get a strange error:
According to the call stack, `koa-compose` ends up …
-
koa2怎么使用koa-router?
-
npm start 启动报错,报错信息是不能加入有约束的外键
```
koa deprecated Support for generators will be removed in v3. See the documentation for examples of how to convert old middleware https://github.com/koajs/koa/blob/…
-
**一、获取get请求数据**
在koa中,获取GET请求数据源头是koa中request对象中的query方法或querystring方法,query返回是格式化好的参数对象,querystring返回的是请求字符串,由于ctx对request的API有直接引用的方式,所以获取GET请求数据有两个途径。
1.是从上下文中直接获取
请求对象ctx.query,返回如 { a:1, b…
lensh updated
3 years ago