mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-28 05:26:44 -05:00
Add hasOwnProperty checks to ApiSvc
This commit is contained in:
parent
8b06a715cd
commit
9e36c3c244
@ -28,6 +28,7 @@ angular.module('ApiSvc', []).service('ApiService', ['$http', function ($http) {
|
||||
transformRequest: function (obj) {
|
||||
var str = [];
|
||||
for (var p in obj)
|
||||
if (obj.hasOwnProperty(p))
|
||||
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
|
||||
return str.join("&");
|
||||
},
|
||||
@ -45,6 +46,7 @@ angular.module('ApiSvc', []).service('ApiService', ['$http', function ($http) {
|
||||
transformRequest: function (obj) {
|
||||
var str = [];
|
||||
for (var p in obj)
|
||||
if (obj.hasOwnProperty(p))
|
||||
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
|
||||
return str.join("&");
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user