-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomapper.js
42 lines (28 loc) · 876 Bytes
/
automapper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Code goes here
var thisProduct = {}; // Your Scope or Custom object that you want to populate
var obj = {
"name": "khan",
"price":29.99,
"jobs": [{"company": "Telco"}, {"company": "Skynet"}],
"banks": [{"bank1": "chase"}],
"Colors": []
};
AutoMap_JsonToObject(obj, thisProduct);
console.log(thisProduct) // its mapped with JSON now
function AutoMap_JsonToObject(jsonObj, product) {
for (prop in jsonObj) {
if (Object.prototype.toString.call(jsonObj[prop]) === '[object Array]') {
product[prop] = [];
}
};
for (prop in jsonObj) {
if (Object.prototype.toString.call(jsonObj[prop]) === '[object Array]') {
for (var j = 0; j < jsonObj[prop].length; j++) {
product[prop].push(jsonObj[prop][j])
}
} else {
product[prop] = jsonObj[prop]
}
};
};
// Auto Mapper 2016