Rumah > Soal Jawab > teks badan
app.provider("myService",['$http',function(){
return {
myUrl:null,
setUrl:function(url) {
myUrl = url;
},
$get:function($http) {
return {
getPerson:function() {
return $http({
method:"GET",
url:myUrl
});
}
}
}
}
}]);
这段代码报了这样一个错误:
ionic.bundle.min.js:40 Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.5.3/$injector/modulerr?p0=myApp&p1=Error%3A%2…st%3A63342%2FIonicDemo%2Flib%2Fionic%2Fjs%2Fionic.bundle.min.js%3A73%3A340
求解这是一个什么错误,上面的代码哪里出错了
阿神2017-05-15 17:06:46
Adakah kod anda akan dimampatkan? Jika ya, ini mungkin kerana tiada suntikan pergantungan yang jelas selepas $get
app.provider("myService",['$http',function($http){
return {
myUrl:null,
setUrl:function(url) {
myUrl = url;
},
$get:['$http',function($http) {
return {
getPerson:function() {
return $http({
method:"GET",
url:myUrl
});
}
}
}]
}
}]);
天蓬老师2017-05-15 17:06:46
app.provider("myService",['$http',function(){
Tukar di atas untuk berfungsi($http)
Anda terlupa untuk menulis parameter, jadi ralat $injector akan dilaporkan