JSFiddle - React, Tailwind, and code Playground
by nuysoft
HTML
<!-- (必选)加载 Mock -->
<script src="http://mockjs.com/dist/mock.js"></script>
JavaScript
// Mock.mock(rurl, template)
Mock.mock(/\.json/, {
'list|1-10': [{
'id|+1': 1,
'email': '@EMAIL'
}]
})
$.ajax({
url: 'hello.json',
dataType: 'json'
}).done(function(data, status, jqXHR){
$('<pre>').text(JSON.stringify(data, null, 4))
.appendTo('body')
})