forked from RubyLouvre/mmDeferred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixin.html
51 lines (48 loc) · 1.64 KB
/
mixin.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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="deferred.js"></script>
<script>
window.onload = function() {
var oldConsole = window.console
window.console = {
log: function(str) {
if (oldConsole) {
oldConsole.log(str)
}
var div = document.createElement("div")
div.innerHTML = window.JSON ? JSON.stringify(str) : str;
document.body.appendChild(div);
}
}
var obj = {
count: 0
}
function aaa() {
// Deferred可以传入一个对象或函数,修改整条Deferred链的所有Promise对象
var d = Deferred({
setCount: function() {
obj.count += 10
return this
}
});
setTimeout(function() {
d.resolve(1000)
}, 1000)
return d.promise
}
aaa().setCount().then(function() {
console.log("then")
}).setCount().setCount()
setTimeout(function() {
console.log(obj.count)
}, 1000)
}
</script>
</head>
<body>
<div>TEST by 司徒正美</div>
</body>
</html>