dreamservice.js 418 B

12345678910111213
  1. (function (app) {
  2. app.factory('dreamService', ['$http', 'config', "util", function ($http, config, util) {
  3. return {
  4. addDream: function (data) {
  5. return $http({
  6. url: config.server + 'api/dream/store',
  7. method: "post",
  8. data: data
  9. })
  10. }
  11. };
  12. }]);
  13. })(angular.module('app.services'));