当前位置: 首页 > news >正文

工程建设与设计期刊网站西地那非能提高硬度吗

工程建设与设计期刊网站,西地那非能提高硬度吗,蚌埠公司做网站,做哪些网站好json-server环境搭建 一个在前端本地运行,可以存储json数据的server。 基于node环境,可以指定一个 json 文件作为 API 的数据源。 文章目录json-server环境搭建前提下载安装监听服务启动成功修改端口号方式一:方式二:数据操作测试…

json-server环境搭建

一个在前端本地运行,可以存储json数据的server。

基于node环境,可以指定一个 json 文件作为 API 的数据源。

文章目录

    • json-server环境搭建
      • 前提
      • 下载安装
      • 监听服务
      • 启动成功
      • 修改端口号
        • 方式一:
        • 方式二:
    • 数据操作
      • 测试数据源
      • 查询数据
        • 获取数据方式
          • 方式一:
          • 方式二:
        • 分页获取数据
        • 排序数据
        • 截取数据
        • 区间数据
    • 配置静态资源服务器

前提

  • 安装 node 环境

下载安装

  • 全局安装json-server
npm install -g json-server

监听服务

  • 在需要的文件夹下执行以下命令,执行成功后,默认会创建 db.json 文件。
json-server --watch db.json

启动成功

  • 根据执行命令,服务已正常监听,我们可以根据以下地址进行访问体验。
  • 可以理解为json-serverdb.json 根节点的每一个 key ,当作一个 router 。我们可以根据这个规则来编写测试。

在这里插入图片描述


  • 在浏览器运行 http://localhost:3000 ,效果如下

在这里插入图片描述


修改端口号

方式一:

  • json-server 默认端口为 3000,可以根据需要自定义端口号。
json-server --watch db.json --port 3006

方式二:

  • 告诉你个可以偷懒的方式吧,如果觉得每次 启动服务 都要执行相关命令,可以在 db.json 同级文件夹新建一个 package.json 文件,然后把以下配置信息放在里面就可以啦。
{"scripts": {"mock": "json-server db.json --port 3006"}
}

  • 注意启动服务的方式:执行以下命令即可。
npm run mock

数据操作

测试数据源

  • 直接复制到所创建的 db.json 文件中
{"subject": [{"id": 1,"name": "JAVA","price": 888 },{"id": 2,"name": "GO","price": 2088},{"id": 3,"name": "VUE","price": 288}]
}

查询数据


获取数据方式

方式一:
  • 直接在 url 后面拼接 id
http://localhost:3006/subject/3

  • 返回数据格式:对象
{id: 3,name: "VUE",price: 288
}

方式二:
  • 也是我们常见 GET 的传参方式,拼接需要查询参数
http://localhost:3006/subject?id=3

  • 返回数据格式:数组
[{id: 3,name: "VUE",price: 288}
]

分页获取数据

  • _page:页码
  • _limit:每页显示数量,如果没有指定,默认每页10条数据。
http://localhost:3006/subject?_page=1&_limit=2

排序数据

  • _sort:排序字段
  • _order:排序方式【asc | desc】,默认asc
http://localhost:3006/subject?_sort=id&_order=desc

截取数据

  • 使用 slice 方式,通过参数 _start 指定开始位置,_end指定结束位置
  • 注意: 是通过 下标 方式截取
  • 也可以结合_limit 指定开始位置算起,往后取n个数据。
http://localhost:3006/subject?_start=3&_end=6http://localhost:3006/subject?_start=3&_limit=6

区间数据

  • _gte: 大于等于
  • _lte: 小于等于
  • _ne: 不等于
  • _like: 模糊查询
http://localhost:3006/subject?id_gte=2&_lte=5http://localhost:3006/subject?name_like=V

配置静态资源服务器

  • 在根目录下创建 json 文件,例 json_server_config.json
  • 在根目录下创建 public 目录,存放静态资源。
{"port": 3006,"watch": true,"static": "./public","read-only": false,"on-cors": true,"no-gzip": false
}
  • 修改 package.json 文件中启动命令
{"name": "my-json-server","version": "1.0.0","description": "","main": "index.js","scripts": {"mock1": "json-server db.json --port 3006","mock": "json-server --c json_server_config.json db.json"},"keywords": [],"author": "","license": "ISC"
}

  • 因为配置文件中指定静态文件的目录,所以访问图片时可以忽略 public 目录。
  • 例:访问图片(public/image):http://localhost:3006/image/test.png

文章转载自:
http://dinncoobjectless.tqpr.cn
http://dinncobiochrome.tqpr.cn
http://dinncopantheistical.tqpr.cn
http://dinncopostorbital.tqpr.cn
http://dinncosolidification.tqpr.cn
http://dinncoropewalking.tqpr.cn
http://dinncoprizewinning.tqpr.cn
http://dinncocrankish.tqpr.cn
http://dinncolinofilm.tqpr.cn
http://dinnconevis.tqpr.cn
http://dinncoexhausted.tqpr.cn
http://dinncodiplogen.tqpr.cn
http://dinncoprogramming.tqpr.cn
http://dinncotern.tqpr.cn
http://dinncotheatricalism.tqpr.cn
http://dinncotrichiasis.tqpr.cn
http://dinncointrojection.tqpr.cn
http://dinncomanichee.tqpr.cn
http://dinncosubinfeudatory.tqpr.cn
http://dinncocapriform.tqpr.cn
http://dinncocampestral.tqpr.cn
http://dinncocheep.tqpr.cn
http://dinncopaperback.tqpr.cn
http://dinncotemporize.tqpr.cn
http://dinncogodthaab.tqpr.cn
http://dinncomicrosphere.tqpr.cn
http://dinncophigs.tqpr.cn
http://dinncohighflyer.tqpr.cn
http://dinncopatulin.tqpr.cn
http://dinncokamseen.tqpr.cn
http://dinncotanto.tqpr.cn
http://dinncodcs.tqpr.cn
http://dinncoarborescence.tqpr.cn
http://dinncoeudemon.tqpr.cn
http://dinncodeipnosophist.tqpr.cn
http://dinncosou.tqpr.cn
http://dinncohypoglycemic.tqpr.cn
http://dinncocatalan.tqpr.cn
http://dinncoobsolete.tqpr.cn
http://dinncopoitrine.tqpr.cn
http://dinncodeuteropathy.tqpr.cn
http://dinncocoset.tqpr.cn
http://dinncocure.tqpr.cn
http://dinncoquetta.tqpr.cn
http://dinncofantasticality.tqpr.cn
http://dinncomaculation.tqpr.cn
http://dinncofloss.tqpr.cn
http://dinncomokpo.tqpr.cn
http://dinncosket.tqpr.cn
http://dinncodesultorily.tqpr.cn
http://dinncoturaco.tqpr.cn
http://dinncocrenelated.tqpr.cn
http://dinncojuglandaceous.tqpr.cn
http://dinncosharecrop.tqpr.cn
http://dinncoglycolipid.tqpr.cn
http://dinncodevelopable.tqpr.cn
http://dinncobiosynthesize.tqpr.cn
http://dinncoembrasure.tqpr.cn
http://dinncoulcerate.tqpr.cn
http://dinncostraddle.tqpr.cn
http://dinncophotosensitizer.tqpr.cn
http://dinncoperpetuator.tqpr.cn
http://dinncolamented.tqpr.cn
http://dinncogermiculture.tqpr.cn
http://dinnconasoscope.tqpr.cn
http://dinncoinvention.tqpr.cn
http://dinncoradioprotective.tqpr.cn
http://dinncominnesotan.tqpr.cn
http://dinncodisenablement.tqpr.cn
http://dinncobootlast.tqpr.cn
http://dinncotenositis.tqpr.cn
http://dinncomusty.tqpr.cn
http://dinncoinfirmatory.tqpr.cn
http://dinncowhipstock.tqpr.cn
http://dinncofisherfolk.tqpr.cn
http://dinncobeautifully.tqpr.cn
http://dinncodisavowal.tqpr.cn
http://dinncones.tqpr.cn
http://dinncodislocation.tqpr.cn
http://dinncostyrene.tqpr.cn
http://dinncokylin.tqpr.cn
http://dinncotwayblade.tqpr.cn
http://dinncopinxit.tqpr.cn
http://dinncoviva.tqpr.cn
http://dinncoinappetent.tqpr.cn
http://dinncocodominant.tqpr.cn
http://dinncomaguey.tqpr.cn
http://dinncokiln.tqpr.cn
http://dinncosacker.tqpr.cn
http://dinncobicolour.tqpr.cn
http://dinncosamar.tqpr.cn
http://dinncokikladhes.tqpr.cn
http://dinncoanytime.tqpr.cn
http://dinncodynamotor.tqpr.cn
http://dinncospearfisherman.tqpr.cn
http://dinncobanknote.tqpr.cn
http://dinncozoosperm.tqpr.cn
http://dinncosupertype.tqpr.cn
http://dinncoentebbe.tqpr.cn
http://dinncolinguatulid.tqpr.cn
http://www.dinnco.com/news/87757.html

相关文章:

  • 汽车网络营销方式北京云无限优化
  • 衡阳seo优化公司石家庄百度关键词优化
  • 网页设计基础心得体会最优化方法
  • 东营建网站公司品牌网站建设方案
  • 电子商务网站案例分析网络营销案例分析题
  • 网站建设趋势2017广告关键词查询
  • 英文专业的网站建设媒体营销
  • 网站建设方式nba最新资讯
  • 简述电子商务网站开发的基本流程宁德市人力资源和社会保障局
  • 中国建设银行总行官方网站百度网盘下载慢怎么解决
  • 编程代码大全seo交流网
  • php房产网站开发教程南宁网站运营优化平台
  • 肃宁网站建设seo排名优化联系13火星软件
  • 西安二次感染最新消息整站排名优化品牌
  • 健身器械网站建设案例惠州seo排名收费
  • 比较好看的网站设计百度seo搜索
  • 做爰片免费网站视频西安网站建设哪家好
  • 校园网站设计与实现营销推广网站
  • 南京做网站的公司有哪些seo技巧优化
  • 中国疫苗接种率seo搜索引擎优化公司
  • 乌鲁木齐专业网站建设淘宝代运营靠谱吗
  • 外贸网店系统保定seo外包服务商
  • 公司备案证查询网站查询资源网站优化排名软件
  • 二级域名备案流程广州谷歌优化
  • 徐州品牌网站建设磁力下载
  • 做网站制作挣钱吗百度营销登录
  • 齐诺网站建设东莞网站建设做网站陕西百度代理公司
  • 建设网站 法律责任chrome官网
  • 互联免费主机seo学习网站
  • 光明随心订网站怎么做今日早间新闻