質問編集履歴
1
GET POSITIONボタンを押した時のconsoleの表示 のところに追記しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -59,6 +59,17 @@
|
|
59
59
|
Uncaught Error
|
60
60
|
throwException @ index.js:33
|
61
61
|
errorCallback @ index.js:19
|
62
|
+
|
63
|
+
|
64
|
+
追記(エラー箇所)
|
65
|
+
function errorCallback(error) {
|
66
|
+
ExcService.throwException(); <= index.js:19
|
67
|
+
}
|
68
|
+
.service("ExcService", function() {
|
69
|
+
this.throwException = function() {
|
70
|
+
throw new Error(); <= index.js:33
|
71
|
+
}
|
72
|
+
})
|
62
73
|
```
|
63
74
|
|
64
75
|
## EXCEPTIONボタンを押した時consoleの表示
|