объекте, если например есть сам объект
const data = {
"reason" : {
"reason" : "test",
"active" : false,
"id" : 50985292,
}}
и строка ‘reason.reason’ ?
https://t.me/ts_cool/169544
обратиться? может получить значение, обратившись к ключу? const data = { "reason" : { "reason" : "test", "active" : false, "id" : {fuck: 42}, }} function getValue(str: string, obj: Object) { const splitted = str.split('.'); let head = obj; for (const s of splitted) { head = head[s]; } return head; } console.dir( getValue('reason.id.fuck', data) )
Обсуждают сегодня