Skip to content

Instantly share code, notes, and snippets.

@tianyk
Last active September 8, 2017 03:13
Show Gist options
  • Save tianyk/75c80913df172f5adf09f2edbb422d22 to your computer and use it in GitHub Desktop.
Save tianyk/75c80913df172f5adf09f2edbb422d22 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Mock.js</title>
</head>
<body>
<script src="http://mockjs.com/dist/mock.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script>
Mock.mock(/^\/users\/\d+/, {
name: '小明',
age: 18
});
$(function () {
$.get('/users/1125')
.done(function (user) {
console.log(user);
})
.fail(function (err) {
console.error(err);
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment