# mockjs-pro **Repository Path**: tmaofu/mockjs-pro ## Basic Information - **Project Name**: mockjs-pro - **Description**: mockjs的fork版本,使用Mock.mock()时,可以使用Promise或者异步函数。 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: refactoring - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-05-02 - **Last Updated**: 2024-06-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ## 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](http://www.elijahmanor.com/2013/04/angry-birds-of-javascript-green-bird.html), [mennovanslooten/mockJSON](https://github.com/mennovanslooten/mockJSON), [appendto/jquery-mockjax](https://github.com/appendto/jquery-mockjax) and [victorquinn/chancejs](https://github.com/victorquinn/chancejs/). ## Questions? If you have any questions, please feel free to ask through [New Issue](https://github.com/nuysoft/Mock/issues/new). ## Reporting an Issue Make sure the problem you're addressing is reproducible. Use or 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](./LICENSE).