微信小程序node.js后台 快速新建路由

https://github.com/tencentyun/wafer2-startup/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98#%E5%A6%82%E4%BD%95%E5%BF%AB%E9%80%9F%E6%96%B0%E5%BB%BA%E8%B7%AF%E7%94%B1

1. 在controllers目录下新建一个文件,例如demo.js,写入如下代码:

module.exports=function(ctx,next) {ctx.state.data={ msg:'Hello World'}}

2. 打开routes/index.js,拉到最底,看到module.exports = router了吗?

在它之前添加如下路由:

router.get('/demo',controllers.demo)

3 微信开发者工具->“腾讯云”按钮->“上传测试代码”->“智能上传”,点击确定即可上传并部署代码,等到提示开发环境部署成功了之后,打开浏览器,访问https://腾讯云分配的域名/weapp/demo,即可看到刚刚编写的返回,是一个 JSON 字符串:

{"code":0,"data":{"msg":"Hello World"}}

ctx.state是koa中间件的存储空间,通过这个state可以存储数据,页面显示渲染view层的中间件也会默认用ctx.state里的属性作为view的上下文传入。难怪我们能在demo路由页面看到用ctx.state.data设置的数据了

你可能感兴趣的:(微信小程序node.js后台 快速新建路由)