改正文字错误

This commit is contained in:
Ruan Yifeng
2014-11-19 17:01:48 +08:00
parent 527bb244d9
commit 29c88ee19e
+2 -2
View File
@@ -72,9 +72,9 @@ var getJSON = function(url) {
};
getJSON("/posts.json").then(function(json) {
console.log('Contents: ' + value);
console.log('Contents: ' + json);
}, function(error) {
console.error('出错了', reason);
console.error('出错了', error);
});
```