1
0
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:
Jack Foltz 2018-01-14 09:50:54 -05:00
parent 8b06a715cd
commit 9e36c3c244
Signed by: foltik
GPG Key ID: 303F88F996E95541

View File

@ -28,7 +28,8 @@ angular.module('ApiSvc', []).service('ApiService', ['$http', function ($http) {
transformRequest: function (obj) {
var str = [];
for (var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
if (obj.hasOwnProperty(p))
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
data: {key: key.key}
@ -45,7 +46,8 @@ angular.module('ApiSvc', []).service('ApiService', ['$http', function ($http) {
transformRequest: function (obj) {
var str = [];
for (var p in obj)
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
if (obj.hasOwnProperty(p))
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
data: key