koa下载文件怎样设置成“utf-8”
ctx.set('Content-disposition', 'attachment; filename=district.csv'); ctx.set('content-type', 'text/csv; charset=utf-8'); ctx.statusCode = 2…
前后端分离koa2的作用是什么?
如前后端分离项目 vue + axios + koa2 + java(springboot) 使用restful风格api问题: koa2到底扮演什么角色?具体点就是什么代码应该写在koa2中呢…
koa2中 ctx.body 无法接收内容
ctx.body = await service.get_search_data(start,count,keyword,(err,res)=>{ if(err){ return '找不到数据'; }else { return res; } } ) 回调函数…
koa2 框架中的中间件同步还是异步的问题?
问题 1:为什么 koa2 框架中的中间件要用 async 的形式写,很少见用同步模式(即不加 async)? 如: app.use(async (ctx, next) => { const start = n…
用 knex 新增 mysql 数据,如何生成 datetime 类型录入时间?
我用下面方法创建数据,字段post_date会报无效的值 CREATE TABLE `evidence` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_date` dat…
koa+mongoose显示不出数据
在学习使用node.js,遇到了些问题。望各位大佬赐教 const koa=require('koa'); const app=new koa(); const route=require('koa-route') const mongoo…
如何在koa项目中区分页面请求和api请求?
我的项目后端是koa,前端是vue的SPA。所有的页面请求我用koa-router是这样配的: router.get(/\/\.*/, async ctx => { ctx.body = await ctx.render(…
nodejs,koa2本地接口,ajax请求偶尔报404
nodejs,koa2本地接口,ajax请求偶尔报404,是什么问题? server.js const Koa =require('koa'); const app=new Koa(); const mongoose=require('mong…
koa-views index.html 访问404
我用koa做react项目的服务器端,碰到一个很奇怪的问题 import 'babel-polyfill' import serve from 'koa-static' import path from 'path' import vi…