码迷,mamicode.com
首页 > 微信 > 详细

搭建微信小程序的本地测试服务器 json-server

时间:2018-11-14 19:04:36      阅读:833      评论:0      收藏:0      [点我收藏+]

标签:pre   分享   target   highlight   小程序   images   ofo   开发   strong   

1.首先需要在windows环境下安装node.js

   选择 Windows Installer 下载对应的系统版本就行,然后一路next,这种方式安装好以后会把环境变量也配置好了,直接在命令行下输入

node --version      //出现对应的版本号信息就表示安装成功了

2.json-server的使用

<1> 安装:npm install -g json-server

<2>然后选一个文件目录新建一个json文件,例如index.json

技术分享图片

 

index.json 内容

{
  "data": [
    {
      "img": "/images/pro_01.jpg",
      "title": "test",
      "desc": "这是个测试1"
    },
    {
      "img": "/images/pro_02.jpg",
      "title": "test",
      "desc": "这是个测试2"
    },
    {
      "img": "/images/pro_03.jpg",
      "title": "test",
      "desc": "这是个测试3"
    },
    {
      "img": "/images/pro_01.jpg",
      "title": "test",
      "desc": "这是个测试4"
    }
  ]
}

 

<3> 启动json-server服务:在新建的json文件夹内,运行命令:json-server + 文件名  (先cd 到对应的文件夹内)

技术分享图片

  • 浏览器中输入地址http://localhost:3000/data就能看到输出index.json的内容
  • 至此,就搭建了一个简单的本地测试服务器,json-server支持get,post等,基本足够开发测试用了,具体的可以参考json-server官网

 

搭建微信小程序的本地测试服务器 json-server

标签:pre   分享   target   highlight   小程序   images   ofo   开发   strong   

原文地址:https://www.cnblogs.com/chr506029589/p/9959156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!