Node.js+koa2

const Koa = require(‘koa’)
const app = new Koa()
const bodyParser = require(‘koa-bodyparser’)

app.use(bodyParser())

app.use(async (ctx) => {
if (ctx.url === ‘/’ && ctx.method === ‘GET’) {
let html = `
<h2>This is demo</h2>
<form method=”POST” action=”/”>
<p>username:</p>
<input name=”username”>
<p>age:</p>
<input name=”age”>
<p>website</p>
<input name=”website”>
<button type=”submit”>submit</button>
</form>
`
ctx.body = html
} else if (ctx.url === ‘/’ && ctx.method === ‘POST’) {
let postData = ctx.request.body;
ctx.body = postData
} else {
ctx.body = ‘<h2>Not find</h2>’
}
})

app.listen(3000, () => {
console.log(‘demo is run’)
})
github地址:https://github.com/Rossy11/node

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理