mockjs-pro
v1.0.4
Published
生成随机数据 & 拦截 Ajax 请求
Downloads
10
Readme
Mock.js
About mockjs-pro
关于 mockjs-pro
The project forked to mockjs, fixing a bug in mockjs where Mock.mock() could not use Promise and async asynchronous functions.
该项目 fork 至 mockjs,修复了 mockjs 中 Mock.mock()不能使用 Promise 和 async 异步函数的 bug。
/**
* 现在你可以使用Promise 或者 async
*/
Mock.mock('/api/sys/register', 'post', (options) => {
return new Promise((resolve) => {
})
})
introduce
介绍
Mock.js is a simulation data generator to help the front-end to develop and prototype separate from the back-end progress and reduce some monotony particularly while writing automated tests.
Mock.js 是一个模拟数据生成器,可帮助前端开发和原型与后端进度分开,并减少一些单调性,特别是在编写自动化测试时。
The official site: http://mockjs.com
官网: http://mockjs.com
Features
- Generate simulated data according to the data template
- Provide request/response mocking for ajax requests
- ~~Generate simulated data according to HTML-based templates~~
This library is loosely inspired by Elijah Manor's post Mocking Introduction, mennovanslooten/mockJSON, appendto/jquery-mockjax and victorquinn/chancejs.
Questions?
If you have any questions, please feel free to ask through New Issue.
Reporting an Issue
Make sure the problem you're addressing is reproducible. Use http://jsbin.com/ or http://jsfiddle.net/ to provide a test page. Indicate what browsers the issue can be reproduced in. What version of Mock.js is the issue reproducible in. Is it reproducible after updating to the latest version?
License
Mock.js is available under the terms of the MIT License.