-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery-mock.html
44 lines (41 loc) · 1.04 KB
/
jquery-mock.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="http://mockjs.com/dist/mock.js"></script>
<script src="jquery.js"></script>
</head>
<body>
<button type="button" id="app">点击请求</button>
</body>
<script>
$("#app").click(function() {
$.ajax({
url: 'http://api.yourdomain.com/getlist/',
type: 'get',
dataType: "json"
}).done(function(data, status, xhr) {
console.log(data, null, 2)
})
})
var obj = {
aa: '11',
bb: '22',
cc: '33',
dd: '44'
}
Mock.mock('http://api.yourdomain.com/getlist/', {
"user|1-3": [{
"id|+1": 1,
name: "@cname",
"age|18-28": 0,
birthday: '@date("yyyy-MM-dd")',
city: "@city",
"fromObj|2": obj
}]
})
</script>
</html>