真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用koa2創(chuàng)建web項(xiàng)目的方法步驟

Github上有一個(gè)express風(fēng)格的koa腳手架,用著挺方便,一直以來(lái)使用koa開(kāi)發(fā)web項(xiàng)目用的也都是那個(gè)腳手架,今天想自己從頭搭一個(gè)web項(xiàng)目,就折騰了一下

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、成都小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了臨猗免費(fèi)建站歡迎大家使用!

腳手架地址: https://github.com/17koa/koa-generator

初始化

使用 npm init 初始化一個(gè)nodejs項(xiàng)目

mkdir koa-demo
cd koa-demo
npm init

一直回車即可,創(chuàng)建好之后目錄里會(huì)有一個(gè) package.json 文件

安裝依賴

npm install --save koa koa-body koa-logger koa-json-error koa-router koa-static koa-njk
  • koa
  • koa-body 解析http請(qǐng)求參數(shù)的,支持 multipart/form-data application/x-www-urlencoded application/json 三種參數(shù)類型
  • koa-logger 顯示http請(qǐng)求的日志
  • koa-router 路由
  • koa-json-error 程序出異常輸出json
  • koa-static 映射靜態(tài)資源文件
  • koa-njk nunjucks模板解析

配置

在根目錄下創(chuàng)建 app.js 然后貼上下面代碼,代碼內(nèi)有注釋,很簡(jiǎn)單

// 引入依賴
const koa = require('koa');
const koa_body = require('koa-body');
const koa_json_error = require('koa-json-error');
const koa_logger = require('koa-logger');
const koa_static = require('koa-static');
const koa_njk = require('koa-njk');
const path = require('path');

// 初始化koa
const app = new koa()

// 引入路由配置文件,這個(gè)在下面說(shuō)明
const routers = require('./routes/routers');

// 配置程序異常輸出的json格式
app.use(koa_json_error((err) => {
 return {
  code: err.status || 500,
  description: err.message
 }
}));

// 添加靜態(tài)資源文件映射
app.use(koa_static(path.join(__dirname, 'static')))
// 添加nunjucks模板
app.use(koa_njk(path.join(__dirname, 'views'), '.njk', {
 autoescape: true,
}, env => {
 // 添加自己的過(guò)濾器
 env.addFilter('split', (str, comma) => {
  if (str) {
   return str.split(comma);
  } else {
   return '';
  }
 });
}));

// 解析表單提交參數(shù)
app.use(koa_body());
// 顯示請(qǐng)求和響應(yīng)日志
app.use(koa_logger());

// 路由
app.use(routers.routes())

// 程序啟動(dòng)監(jiān)聽(tīng)的端口
const port = 3000;

app.listen(port);
console.log('Listening on ' + port);

路由

在根目錄下創(chuàng)建 routes 文件夾

在 routes 文件夾內(nèi)創(chuàng)建 index.js routers.js 文件

在 index.js 文件內(nèi)添加如下代碼

// 測(cè)試路由,輸出請(qǐng)求的參數(shù)
exports.index = async ctx => {
 const body = ctx.request.body;
 const query = ctx.request.query;
 const params = ctx.params;
 ctx.body = {
  body: body,
  query: query,
  params: params,
 };
}

// 測(cè)試nunjucks模板
exports.view = async ctx => {
 await ctx.render('index', {
  title: 'Koa'
 })
}

// 測(cè)試異常
exports.test_error = async ctx => {
 throw new Error('測(cè)試異常');
}

配置路由,在 routers.js 文件內(nèi)配置路由

const router = require('koa-router')();

// route
const index = require('./index');

router.get('/view', index.view);
router.get('/index', index.index);
router.get('/index:id', index.index);
router.post('/index', index.index);
router.get('/test_error', index.test_error);

module.exports = router

靜態(tài)文件

在根目錄創(chuàng)建文件夾 static 添加 app.css 文件,寫(xiě)上下面代碼

body {
 background-color: #eee;
}

模板

在根目錄創(chuàng)建文件夾 views 添加 index.njk 文件,寫(xiě)上下面代碼




 
 
 
 
 



Hello, ! 

啟動(dòng)

安裝 nodemon

npm install -g nodemon

在根目錄運(yùn)行命令啟動(dòng)項(xiàng)目

nodemon app.js

測(cè)試

訪問(wèn) http://localhost:3000/view/

使用koa2創(chuàng)建web項(xiàng)目的方法步驟

訪問(wèn) http://localhost:3000/index/ 可以看到輸出的json

{
 "body": {},
 "query": {},
 "params": {}
}

訪問(wèn) http://localhost:3000/index/?id=1

{
 "body": {},
 "query": {
  "id": "1"
 },
 "params": {}
}

訪問(wèn) http://localhost:3000/index/1

{
 "body": {},
 "query": {},
 "params": {
  "id": "1"
 }
}

POST 請(qǐng)求 curl -X POST http://localhost:3000/index/ -d '{"id": "1"}' -H 'Content-Type:application/json'

{
 "body":{
  "id":"1"
 },
 "query":{},
 "params":{}
}

訪問(wèn) http://localhost:3000/test_error

{
 "code": 500,
 "description": "測(cè)試異常"
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


分享題目:使用koa2創(chuàng)建web項(xiàng)目的方法步驟
URL標(biāo)題:http://weahome.cn/article/ghspgh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部