Ik heb een string als
string = "firstName:name1, lastName:last1";
Nu heb ik een object nodig obj zodanig dat
obj = {firstName:name1, lastName:last1}
Hoe kan ik dit doen in JS?
1, Autoriteit 100%
Eigenlijk gebruikt de beste oplossing JSON:
JSON.parse(text[, reviver]);
Voorbeelden:
1)
var myobj = JSON.parse('{ "hello":"world" }');
alert(myobj.hello); // 'world'
2)
var myobj = JSON.parse(JSON.stringify({
hello: "world"
});
alert(myobj.hello); // 'world'
3)
Een functie doorgeven aan JSON
var obj = {
hello: "World",
sayHello: (function() {
console.log("I say Hello!");
}).toString()
};
var myobj = JSON.parse(JSON.stringify(obj));
myobj.sayHello = new Function("return ("+myobj.sayHello+")")();
myobj.sayHello();
2, Autoriteit 46%
Uw string ziet eruit als een JSON-string zonder de gekrulde beugels.
Dit zou dan moeten werken:
obj = eval('({' + str + '})');
3, Autoriteit 32%
Als ik goed begrijp:
var properties = string.split(', ');
var obj = {};
properties.forEach(function(property) {
var tup = property.split(':');
obj[tup[0]] = tup[1];
});
Ik neem aan dat de eigenschap naam links van de dikke darm is en de stringwaarde die het ingeschakeld is, is rechts.
Merk op dat Array.forEach
is JavaScript 1.6 – Misschien wilt u een toolkit gebruiken voor maximale compatibiliteit.
4, Autoriteit 25%
Deze eenvoudige manier …
var string = "{firstName:'name1', lastName:'last1'}";
eval('var obj='+string);
alert(obj.firstName);
Uitgang
name1
5, Autoriteit 7%
Als u een tekenreeks hebt zoals foo: 1, bar: 2
U kunt het converteren naar een geldige OBJ met:
str
.split(',')
.map(x => x.split(':').map(y => y.trim()))
.reduce((a, x) => {
a[x[0]] = x[1];
return a;
}, {});
Dank aan niggler in #javascript daarvoor.
Update met uitleg:
const obj = 'foo: 1, bar: 2'
.split(',') // split into ['foo: 1', 'bar: 2']
.map(keyVal => { // go over each keyVal value in that array
return keyVal
.split(':') // split into ['foo', '1'] and on the next loop ['bar', '2']
.map(_ => _.trim()) // loop over each value in each array and make sure it doesn't have trailing whitespace, the _ is irrelavent because i'm too lazy to think of a good var name for this
})
.reduce((accumulator, currentValue) => { // reduce() takes a func and a beginning object, we're making a fresh object
accumulator[currentValue[0]] = currentValue[1]
// accumulator starts at the beginning obj, in our case {}, and "accumulates" values to it
// since reduce() works like map() in the sense it iterates over an array, and it can be chained upon things like map(),
// first time through it would say "okay accumulator, accumulate currentValue[0] (which is 'foo') = currentValue[1] (which is '1')
// so first time reduce runs, it starts with empty object {} and assigns {foo: '1'} to it
// second time through, it "accumulates" {bar: '2'} to it. so now we have {foo: '1', bar: '2'}
return accumulator
}, {}) // when there are no more things in the array to iterate over, it returns the accumulated stuff
console.log(obj)
Verwarrende MDN-documenten:
- https://developer.mozilla. org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map
- https://developer.mozilla. org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/Reduce
Demo: http://jsbin.com/hiduhijevu/edit?js,console
Functie:
const str2obj = str => {
return str
.split(',')
.map(keyVal => {
return keyVal
.split(':')
.map(_ => _.trim())
})
.reduce((accumulator, currentValue) => {
accumulator[currentValue[0]] = currentValue[1]
return accumulator
}, {})
}
console.log(str2obj('foo: 1, bar: 2')) // see? works!
Antwoord 6, autoriteit 7%
als je JQuery gebruikt:
var obj = jQuery.parseJSON('{"path":"/img/filename.jpg"}');
console.log(obj.path); // will print /img/filename.jpg
ONTHOUD: eval is slecht! 😀
Antwoord 7, autoriteit 7%
Je moet JSON.parse() gebruiken om String naar een Object te converteren:
var obj = JSON.parse('{ "firstName":"name1", "lastName": "last1" }');
Antwoord 8, autoriteit 3%
Ik heb een oplossing geïmplementeerd in een paar regels code die behoorlijk betrouwbaar werkt.
Met een HTML-element zoals dit waar ik aangepaste opties wil doorgeven:
<div class="my-element"
data-options="background-color: #dadada; custom-key: custom-value;">
</div>
een functie ontleedt de aangepaste opties en retourneert een object om dat ergens te gebruiken:
function readCustomOptions($elem){
var i, len, option, options, optionsObject = {};
options = $elem.data('options');
options = (options || '').replace(/\s/g,'').split(';');
for (i = 0, len = options.length - 1; i < len; i++){
option = options[i].split(':');
optionsObject[option[0]] = option[1];
}
return optionsObject;
}
console.log(readCustomOptions($('.my-element')));
Antwoord 9, autoriteit 2%
string = "firstName:name1, lastName:last1";
Dit werkt:
var fields = string.split(', '),
fieldObject = {};
if( typeof fields === 'object') ){
fields.each(function(field) {
var c = property.split(':');
fieldObject[c[0]] = c[1];
});
}
Het is echter niet efficiënt. Wat gebeurt er als je zoiets als dit hebt:
string = "firstName:name1, lastName:last1, profileUrl:http://localhost/site/profile/1";
split()
zal ‘http’ splitsen. Dus ik raad je aan een speciaal scheidingsteken te gebruiken, zoals pijp
string = "firstName|name1, lastName|last1";
var fields = string.split(', '),
fieldObject = {};
if( typeof fields === 'object') ){
fields.each(function(field) {
var c = property.split('|');
fieldObject[c[0]] = c[1];
});
}
Antwoord 10, autoriteit 2%
Ik gebruik JSON5en het werkt redelijk goed.
Het goede is dat het geeneval
en geennew Function
bevat, zeer veilig in gebruik.
Antwoord 11, autoriteit 2%
In jouw geval, de korte en mooie code
Object.fromEntries(str.split(',').map(i => i.split(':')));
Antwoord 12
Dit is universele code, het maakt niet uit hoe lang je invoer is, maar in hetzelfde schema als er is: scheidingsteken 🙂
var string = "firstName:name1, lastName:last1";
var pass = string.replace(',',':');
var arr = pass.split(':');
var empty = {};
arr.forEach(function(el,i){
var b = i + 1, c = b/2, e = c.toString();
if(e.indexOf('.') != -1 ) {
empty[el] = arr[i+1];
}
});
console.log(empty)
Antwoord 13
Hier is mijn benadering om sommige randgevallen af ​​te handelen, zoals het hebben van witruimten en andere primitieve typen als waarden
const str = " c:234 , d:sdfg ,e: true, f:null, g: undefined, h:name ";
const strToObj = str
.trim()
.split(",")
.reduce((acc, item) => {
const [key, val = ""] = item.trim().split(":");
let newVal = val.trim();
if (newVal == "null") {
newVal = null;
} else if (newVal == "undefined") {
newVal = void 0;
} else if (!Number.isNaN(Number(newVal))) {
newVal = Number(newVal);
}else if (newVal == "true" || newVal == "false") {
newVal = Boolean(newVal);
}
return { ...acc, [key.trim()]: newVal };
}, {});
Antwoord 14
In jouw geval
var KeyVal = string.split(", ");
var obj = {};
var i;
for (i in KeyVal) {
KeyVal[i] = KeyVal[i].split(":");
obj[eval(KeyVal[i][0])] = eval(KeyVal[i][1]);
}
Antwoord 15
var stringExample = "firstName:name1, lastName:last1 | firstName:name2, lastName:last2";
var initial_arr_objects = stringExample.split("|");
var objects =[];
initial_arr_objects.map((e) => {
var string = e;
var fields = string.split(','),fieldObject = {};
if( typeof fields === 'object') {
fields.forEach(function(field) {
var c = field.split(':');
fieldObject[c[0]] = c[1]; //use parseInt if integer wanted
});
}
console.log(fieldObject)
objects.push(fieldObject);
});
“objects” array zal alle objecten bevatten
Antwoord 16
Ik weet dat dit een oud bericht is, maar ik heb het juiste antwoord op de vraag niet gezien.
var jsonStrig = '{';
var items = string.split(',');
for (var i = 0; i < items.length; i++) {
var current = items[i].split(':');
jsonStrig += '"' + current[0] + '":"' + current[1] + '",';
}
jsonStrig = jsonStrig.substr(0, jsonStrig.length - 1);
jsonStrig += '}';
var obj = JSON.parse(jsonStrig);
console.log(obj.firstName, obj.lastName);
Nu kunt u obj.firstName
en obj.lastName
gebruiken om de waarden te krijgen zoals u normaal kunt doen met een object.