npm install
gulp- edit the file: config.js
module.exports = { '/api/vote':'vote.json' }
- edit the file: mock/vote.json
{'code':1, 'msg':'test the mock'}
- request
normal: http://yourhost:8000/api/vote jsonp: http://yourhost:8000/api/vote?callback=mock_test
- response
normal: {'code':1, 'msg':'test the mock'} jsonp: mock_test({'code':1, 'msg':'test the mock'})