最近參加了公司的一個新的項目,先後端同時開發,這時後端提供不了前端接口,那麼就要靠我們前端本身mock數據啦。html
用到mock 數據的工具是 mockjs ,就是這個。前端
這裏是github地址:https://github.com/nuysoft/Mock/wiki/Getting-Startedreact
# 安裝
npm install mockjs
# 導入 mockjs
import mockjs from 'mockjs';
const proxy = {'GET /api/getuser': (req, res) => res.send(mockjs.mock({ // /api/getuser 是我須要訪問的接口名稱 "code": 0, "content|1": [{ // content|1 content 是我最終想要拿到的數據 1是指生成一個content
"id|+1": 1,
"name": "@cname",
"job|1": ["前端工程師", "前端助理", "前端專家", "運維專家", "後端工程師"],
"jobNum|1": [1, 12, 34, 56, 23, 45, 56, 34, 56, 77, 4, 321, 443, 654, 231],
"date": "@date",
"jobHour": "@integer",
}],
success: true,
message: '123',
})) }
export default delay(proxy, 1000);
mockjs 有不少方便之處,它的規範和用法官網寫的很清楚,去官網看哦git
一、安裝:https://github.com/nuysoft/Mock/wiki/Getting-Startedgithub
二、規範:https://github.com/nuysoft/Mock/wiki/Syntax-Specificationnpm
三、佔位符@XXX規範:https://github.com/nuysoft/Mock/wiki/Mock.Random後端
四、炒雞全面的示例:http://mockjs.com/examples.htmlapi
五、一個很詳細的解釋:https://www.jianshu.com/p/9dbcfbe6130f前端工程師