Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
slam4:richclient:angularjs:services [2015/01/24 03:06] – [2- Injection d'un service] jcheron | slam4:richclient:angularjs:services [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 43: | Ligne 43: | ||
===== -- $http service ===== | ===== -- $http service ===== | ||
- | Le service $http (ng module) permet de faire des requêtes HTTP vers un serveur, via l' | + | Le service |
==== -- Usage classique ==== | ==== -- Usage classique ==== | ||
<sxh javascript> | <sxh javascript> | ||
- | // Simple GET request example | + | // Exemple de get : |
$http.get('/ | $http.get('/ | ||
success(function(data, | success(function(data, | ||
- | // this callback will be called asynchronously | + | // Fonction de rappel appelée de manière asynchrone |
- | // when the response is available | + | // quand la réponse est reçue |
}). | }). | ||
error(function(data, | error(function(data, | ||
- | // called asynchronously if an error occurs | + | // Appelé de manière asynchrone en cas d' |
- | // or server returns response with an error status. | + | // ou si le serveur retourne une réponse avec un statut d' |
}); | }); | ||
</ | </ | ||
<sxh javascript> | <sxh javascript> | ||
- | // Simple POST request example (passing data) : | + | // Exemple de post avec passage de données |
$http.post('/ | $http.post('/ | ||
success(function(data, | success(function(data, | ||
- | // this callback will be called asynchronously | + | // Fonction de rappel appelée de manière asynchrone |
- | // when the response is available | + | // quand la réponse est reçue |
}). | }). | ||
error(function(data, | error(function(data, | ||
- | // called asynchronously if an error occurs | + | // Appelé de manière asynchrone en cas d' |
- | // or server returns response with an error status. | + | // ou si le serveur retourne une réponse avec un statut d' |
}); | }); | ||
</ | </ | ||
+ | |||
+ | ==== -- Raccourcis ==== | ||
+ | |||
+ | * [[https:// | ||
+ | * $http.head | ||
+ | * $http.post | ||
+ | * $http.put | ||
+ | * $http.delete | ||
+ | * $http.jsonp | ||
+ | * $http.patch | ||
+ | |||
+ | |||
+ | <sxh javascript> | ||
+ | $http.get('/ | ||
+ | $http.post('/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== -- $q service ===== | ||
+ | Le service **$q** (ng module) permet d' | ||
+ |