Convertir des paramètres D'URL en objet JavaScript

j'ai une chaîne comme celle-ci:

abc=foo&def=%5Basf%5D&xyz=5

Comment puis-je le convertir en un objet JavaScript comme ceci?

{
  abc: 'foo',
  def: '[asf]',
  xyz: 5
}
135
demandé sur Michał Perłakowski 2011-12-28 00:19:37

22 réponses

Modifier

cette édition améliore et explique la réponse basée sur les commentaires.

var search = location.search.substring(1);
JSON.parse('{"' + decodeURI(search).replace(/"/g, '\"').replace(/&/g, '","').replace(/=/g,'":"') + '"}')

exemple

parle abc=foo&def=%5Basf%5D&xyz=5 en cinq étapes:

  • decodeURI: abc=foo&def = [asf]&xyz=5
  • Échapper les guillemets: de même, comme il n'y a pas de guillemets
  • remplacer &: abc=foo","def=[asf]","xyz=5
  • remplacer = : abc":"foo","def":"[asf]","xyz":"5
  • Suround avec curlies et citations: {"abc":"foo","def":"[asf]","xyz":"5"}

qui est légal, JSON.

Un amélioration de la solution permet plus de caractères dans la chaîne de recherche. Il utilise une fonction de réveil pour le décodage URI:

var search = location.search.substring(1);
JSON.parse('{"' + search.replace(/&/g, '","').replace(/=/g,'":"') + '"}', function(key, value) { return key===""?value:decodeURIComponent(value) })

exemple

search = "abc=foo&def=%5Basf%5D&xyz=5&foo=b%3Dar";

donne

Object {abc: "foo", def: "[asf]", xyz: "5", foo: "b=ar"}

réponse originale

Un one-liner:

JSON.parse('{"' + decodeURI("abc=foo&def=%5Basf%5D&xyz=5".replace(/&/g, "\",\"").replace(/=/g,"\":\"")) + '"}')
242
répondu Wolfgang Kuehn 2018-02-26 16:18:38

Split sur & pour obtenir des paires nom/valeur, puis diviser chaque paire sur = . Voici un exemple:

var str = "abc=foo&def=%5Basf%5D&xy%5Bz=5"
var obj = str.split("&").reduce(function(prev, curr, i, arr) {
    var p = curr.split("=");
    prev[decodeURIComponent(p[0])] = decodeURIComponent(p[1]);
    return prev;
}, {});

une autre approche, utilisant des expressions régulières:

var obj = {}; 
str.replace(/([^=&]+)=([^&]*)/g, function(m, key, value) {
    obj[decodeURIComponent(key)] = decodeURIComponent(value);
}); 

adapté de de John Resig," Search and Don't Replace " .

22
répondu Wayne Burkett 2011-12-27 20:41:13

C'est la version simple, évidemment vous voudrez ajouter un peu de vérification d'erreur:

var obj = {};
var pairs = queryString.split('&');
for(i in pairs){
    var split = pairs[i].split('=');
    obj[decodeURIComponent(split[0])] = decodeURIComponent(split[1]);
}
12
répondu Justin Niessner 2011-12-27 20:31:51

j'ai trouvé $.Chaîne.deparam la solution pré construite la plus complète (peut faire des objets imbriqués, etc.). Consultez la documentation .

9
répondu Daff 2011-12-27 20:24:32

j'ai eu le même problème, essayé les solutions ici, mais aucune d'elles n'a vraiment fonctionné, puisque j'avais des tableaux dans les paramètres D'URL, comme ceci:

?param[]=5&param[]=8&othr_param=abc&param[]=string

alors j'ai fini par écrire ma propre fonction JS, qui fait un tableau du param dans URI:

/**
 * Creates an object from URL encoded data
 */
var createObjFromURI = function() {
    var uri = decodeURI(location.search.substr(1));
    var chunks = uri.split('&');
    var params = Object();

    for (var i=0; i < chunks.length ; i++) {
        var chunk = chunks[i].split('=');
        if(chunk[0].search("\[\]") !== -1) {
            if( typeof params[chunk[0]] === 'undefined' ) {
                params[chunk[0]] = [chunk[1]];

            } else {
                params[chunk[0]].push(chunk[1]);
            }


        } else {
            params[chunk[0]] = chunk[1];
        }
    }

    return params;
}
6
répondu pcigler 2013-03-13 10:45:21

une solution concise:

location.search
  .slice(1)
  .split('&')
  .map(p => p.split('='))
  .reduce((obj, pair) => {
    const [key, value] = pair.map(decodeURIComponent);
    return ({ ...obj, [key]: value })
  }, {});
6
répondu Clemens Helm 2017-11-22 22:05:53

une autre solution basée sur le dernier standard D'URLSearchParams ( https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams )

function getQueryParamsObject() {
  const searchParams = new URLSearchParams(location.search.slice(1));
  return searchParams
    ? _.fromPairs(Array.from(searchParams.entries()))
    : {};
}

veuillez noter que cette solution utilise

"151980920 Tableau.de ( https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from )

et _.frumpairs ( https://lodash.com/docs#fromPairs ) de lodash pour la simplicité.

il devrait être facile de créer une solution plus compatible puisque vous avez accès à searchParams.entrées() itérateur.

5
répondu Nickey 2016-05-12 10:38:28

utilisant ES6, L'API URL et L'API URLSearchParams.

function objectifyQueryString(url) {
  let _url = new URL(url);
  let _params = new URLSearchParams(_url.search);
  let query = Array.from(_params.keys()).reduce((sum, value)=>{
    return Object.assign({[value]: _params.get(value)}, sum);
  }, {});
  return query;
}
3
répondu supergentle 2017-10-09 19:19:03

2018 ES6 / 7 / 8 et en approche

en commençant par ES6 et on, Javascript propose plusieurs constructions afin de créer une solution performante pour ce problème.

cela comprend l'utilisation de URLSearchParams et itérateurs

let params = new URLSearchParams('abc=foo&def=%5Basf%5D&xyz=5');
params.get("abc"); // "foo"

si votre dossier d'utilisation vous demande de le convertir en objet, vous pouvez implémenter la fonction suivante:

function paramsToObject(entries) {
  let result = {}
  for(let entry of entries) { // each 'entry' is a [key, value] tupple
    result[entry[0]] = entry[1];
  }
  return result;
}

Démo

let params = new URLSearchParams('abc=foo&def=%5Basf%5D&xyz=5');
let entries = params.entries(); //returns an iterator of decoded [key,value] tuples
paramsToObject(entries); //{abc:"foo",def:"[asf]",xyz:"5"}

Note: toutes les valeurs sont des chaînes de caractères automatiques selon la spécification URLSearchParams

3
répondu silicakes 2018-09-30 08:21:05

il n'y a pas de solution indigène dont je sois au courant. Dojo a une méthode de unserialization intégrée si vous utilisez ce cadre par hasard.

sinon vous pouvez l'implémenter vous-même plutôt simplement:

function unserialize(str) {
  str = decodeURIComponent(str);
  var chunks = str.split('&'),
      obj = {};
  for(var c=0; c < chunks.length; c++) {
    var split = chunks[c].split('=', 2);
    obj[split[0]] = split[1];
  }
  return obj;
}

edit: ajouté decodeURIComponent()

2
répondu mattacular 2011-12-27 20:34:44

il y a une bibliothèque légère appelée YouAreI.js qui est testé et rend cela vraiment facile.

YouAreI = require('YouAreI')
uri = new YouAreI('http://user:pass@www.example.com:3000/a/b/c?d=dad&e=1&f=12.3#fragment');

uri.query_get() => { d: 'dad', e: '1', f: '12.3' }
2
répondu steel 2015-06-02 22:59:26

les solutions proposées que j'ai trouvées jusqu'à présent ne couvrent pas des scénarios plus complexes.

j'avais besoin de convertir une chaîne de requête comme

https://random.url.com?Target=Offer&Method=findAll&filters%5Bhas_goals_enabled%5D%5BTRUE%5D=1&filters%5Bstatus%5D=active&fields%5B%5D=id&fields%5B%5D=name&fields%5B%5D=default_goal_name

dans un objet comme:

{
    "Target": "Offer",
    "Method": "findAll",
    "fields": [
        "id",
        "name",
        "default_goal_name"
    ],
    "filters": {
        "has_goals_enabled": {
            "TRUE": "1"
        },
        "status": "active"
    }
}

ou:

https://random.url.com?Target=Report&Method=getStats&fields%5B%5D=Offer.name&fields%5B%5D=Advertiser.company&fields%5B%5D=Stat.clicks&fields%5B%5D=Stat.conversions&fields%5B%5D=Stat.cpa&fields%5B%5D=Stat.payout&fields%5B%5D=Stat.date&fields%5B%5D=Stat.offer_id&fields%5B%5D=Affiliate.company&groups%5B%5D=Stat.offer_id&groups%5B%5D=Stat.date&filters%5BStat.affiliate_id%5D%5Bconditional%5D=EQUAL_TO&filters%5BStat.affiliate_id%5D%5Bvalues%5D=1831&limit=9999

en:

{
    "Target": "Report",
    "Method": "getStats",
    "fields": [
        "Offer.name",
        "Advertiser.company",
        "Stat.clicks",
        "Stat.conversions",
        "Stat.cpa",
        "Stat.payout",
        "Stat.date",
        "Stat.offer_id",
        "Affiliate.company"
    ],
    "groups": [
        "Stat.offer_id",
        "Stat.date"
    ],
    "limit": "9999",
    "filters": {
        "Stat.affiliate_id": {
            "conditional": "EQUAL_TO",
            "values": "1831"
        }
    }
}

j'ai compilé et adapté plusieurs solutions en une qui fonctionne réellement:

CODE:

var getParamsAsObject = function (query) {

    query = query.substring(query.indexOf('?') + 1);

    var re = /([^&=]+)=?([^&]*)/g;
    var decodeRE = /\+/g;

    var decode = function (str) {
        return decodeURIComponent(str.replace(decodeRE, " "));
    };

    var params = {}, e;
    while (e = re.exec(query)) {
        var k = decode(e[1]), v = decode(e[2]);
        if (k.substring(k.length - 2) === '[]') {
            k = k.substring(0, k.length - 2);
            (params[k] || (params[k] = [])).push(v);
        }
        else params[k] = v;
    }

    var assign = function (obj, keyPath, value) {
        var lastKeyIndex = keyPath.length - 1;
        for (var i = 0; i < lastKeyIndex; ++i) {
            var key = keyPath[i];
            if (!(key in obj))
                obj[key] = {}
            obj = obj[key];
        }
        obj[keyPath[lastKeyIndex]] = value;
    }

    for (var prop in params) {
        var structure = prop.split('[');
        if (structure.length > 1) {
            var levels = [];
            structure.forEach(function (item, i) {
                var key = item.replace(/[?[\]\ ]/g, '');
                levels.push(key);
            });
            assign(params, levels, params[prop]);
            delete(params[prop]);
        }
    }
    return params;
};
2
répondu Mauricio van der Maesen 2018-04-25 02:21:03

ES6 un liner. Propre et simple.

var obj = Array.from(new URLSearchParams(location.search).keys()).reduce((sum, value,index,arr)=>{ return Object.assign({[value]: new URLSearchParams(location.search).get(value)}, sum); }, {});
2
répondu rturkek 2018-05-03 05:09:38

assez facile à utiliser avec URLSearchParams API Web JavaScript,

var paramsString = "q=forum&topic=api";

//returns an iterator object
var searchParams = new URLSearchParams(paramsString);

//Usage
for (let p of searchParams) {
  console.log(p);
}

//Get the query strings
console.log(searchParams.toString());

//You can also pass in objects

var paramsObject = {q:"forum",topic:"api"}

//returns an iterator object
var searchParams = new URLSearchParams(paramsObject);

//Usage
for (let p of searchParams) {
  console.log(p);
}

//Get the query strings
console.log(searchParams.toString());

Liens Utiles

NOTE : Non pris en charge dans IE

2
répondu Erisan Olasheni 2018-08-13 07:51:25

En voici un que j'utilise:

var params = {};
window.location.search.substring(1).split('&').forEach(function(pair) {
  pair = pair.split('=');
  if (pair[1] !== undefined) {
    var key = decodeURIComponent(pair[0]),
        val = decodeURIComponent(pair[1]),
        val = val ? val.replace(/\++/g,' ').trim() : '';

    if (key.length === 0) {
      return;
    }
    if (params[key] === undefined) {
      params[key] = val;
    }
    else {
      if ("function" !== typeof params[key].push) {
        params[key] = [params[key]];
      }
      params[key].push(val);
    }
  }
});
console.log(params);

usage de base, par exemple:

?a=aa&b=bb

Object {a: "aa", b: "bb"}

Double params, par exemple.

?a=aa&b=bb&c=cc&c=potato

Object {a: "aa", b: "bb", c: ["cc","potato"]}

clés manquantes, par exemple

?a=aa&b=bb&=cc

Object {a: "aa", b: "bb"}

valeurs manquantes, par exemple

?a=aa&b=bb&c

Object {a: "aa", b: "bb"}

les solutions JSON/regex ci-dessus jettent une erreur de syntaxe sur cette url farfelue:

?a=aa&b=bb&c=&=dd&e

Object {a: "aa", b: "bb", c: ""}

1
répondu Mike Causer 2015-02-17 04:10:39

voici ma version rapide et sale, essentiellement en divisant les paramètres D'URL séparés par '&' en éléments de tableau, puis itère sur ce tableau en ajoutant des paires clé/valeur séparées par '=' dans un objet. J'utilise decodeURIComponent () pour traduire les caractères encodés vers leurs équivalents de chaîne normaux (donc %20 devient un espace, %26 devient'&', etc):

function deparam(paramStr) {
    let paramArr = paramStr.split('&');     
    let paramObj = {};
    paramArr.forEach(e=>{
        let param = e.split('=');
        paramObj[param[0]] = decodeURIComponent(param[1]);
    });
    return paramObj;
}

exemple:

deparam('abc=foo&def=%5Basf%5D&xyz=5')

retourne

{
    abc: "foo"
    def:"[asf]"
    xyz :"5"
}

le seul problème est que xyz est une chaîne et non un nombre (en raison de l'utilisation de decodeURIComponent()), mais au-delà de ce n'est pas un mauvais point de départ.

1
répondu Eric 2017-04-27 19:09:38
//under ES6 
const getUrlParamAsObject = (url = window.location.href) => {
    let searchParams = url.split('?')[1];
    const result = {};
    //in case the queryString is empty
    if (searchParams!==undefined) {
        const paramParts = searchParams.split('&');
        for(let part of paramParts) {
            let paramValuePair = part.split('=');
            //exclude the case when the param has no value
            if(paramValuePair.length===2) {
                result[paramValuePair[0]] = decodeURIComponent(paramValuePair[1]);
            }
        }

    }
    return result;
}
1
répondu XYz Amos 2017-06-07 03:42:02

utilisant phpjs

function parse_str(str, array) {
  //       discuss at: http://phpjs.org/functions/parse_str/
  //      original by: Cagri Ekin
  //      improved by: Michael White (http://getsprink.com)
  //      improved by: Jack
  //      improved by: Brett Zamir (http://brett-zamir.me)
  //      bugfixed by: Onno Marsman
  //      bugfixed by: Brett Zamir (http://brett-zamir.me)
  //      bugfixed by: stag019
  //      bugfixed by: Brett Zamir (http://brett-zamir.me)
  //      bugfixed by: MIO_KODUKI (http://mio-koduki.blogspot.com/)
  // reimplemented by: stag019
  //         input by: Dreamer
  //         input by: Zaide (http://zaidesthings.com/)
  //         input by: David Pesta (http://davidpesta.com/)
  //         input by: jeicquest
  //             note: When no argument is specified, will put variables in global scope.
  //             note: When a particular argument has been passed, and the returned value is different parse_str of PHP. For example, a=b=c&d====c
  //             test: skip
  //        example 1: var arr = {};
  //        example 1: parse_str('first=foo&second=bar', arr);
  //        example 1: $result = arr
  //        returns 1: { first: 'foo', second: 'bar' }
  //        example 2: var arr = {};
  //        example 2: parse_str('str_a=Jack+and+Jill+didn%27t+see+the+well.', arr);
  //        example 2: $result = arr
  //        returns 2: { str_a: "Jack and Jill didn't see the well." }
  //        example 3: var abc = {3:'a'};
  //        example 3: parse_str('abc[a][b]["c"]=def&abc[q]=t+5');
  //        returns 3: {"3":"a","a":{"b":{"c":"def"}},"q":"t 5"}

  var strArr = String(str)
    .replace(/^&/, '')
    .replace(/&$/, '')
    .split('&'),
    sal = strArr.length,
    i, j, ct, p, lastObj, obj, lastIter, undef, chr, tmp, key, value,
    postLeftBracketPos, keys, keysLen,
    fixStr = function(str) {
      return decodeURIComponent(str.replace(/\+/g, '%20'));
    };

  if (!array) {
    array = this.window;
  }

  for (i = 0; i < sal; i++) {
    tmp = strArr[i].split('=');
    key = fixStr(tmp[0]);
    value = (tmp.length < 2) ? '' : fixStr(tmp[1]);

    while (key.charAt(0) === ' ') {
      key = key.slice(1);
    }
    if (key.indexOf('\x00') > -1) {
      key = key.slice(0, key.indexOf('\x00'));
    }
    if (key && key.charAt(0) !== '[') {
      keys = [];
      postLeftBracketPos = 0;
      for (j = 0; j < key.length; j++) {
        if (key.charAt(j) === '[' && !postLeftBracketPos) {
          postLeftBracketPos = j + 1;
        } else if (key.charAt(j) === ']') {
          if (postLeftBracketPos) {
            if (!keys.length) {
              keys.push(key.slice(0, postLeftBracketPos - 1));
            }
            keys.push(key.substr(postLeftBracketPos, j - postLeftBracketPos));
            postLeftBracketPos = 0;
            if (key.charAt(j + 1) !== '[') {
              break;
            }
          }
        }
      }
      if (!keys.length) {
        keys = [key];
      }
      for (j = 0; j < keys[0].length; j++) {
        chr = keys[0].charAt(j);
        if (chr === ' ' || chr === '.' || chr === '[') {
          keys[0] = keys[0].substr(0, j) + '_' + keys[0].substr(j + 1);
        }
        if (chr === '[') {
          break;
        }
      }

      obj = array;
      for (j = 0, keysLen = keys.length; j < keysLen; j++) {
        key = keys[j].replace(/^['"]/, '')
          .replace(/['"]$/, '');
        lastIter = j !== keys.length - 1;
        lastObj = obj;
        if ((key !== '' && key !== ' ') || j === 0) {
          if (obj[key] === undef) {
            obj[key] = {};
          }
          obj = obj[key];
        } else { // To insert new dimension
          ct = -1;
          for (p in obj) {
            if (obj.hasOwnProperty(p)) {
              if (+p > ct && p.match(/^\d+$/g)) {
                ct = +p;
              }
            }
          }
          key = ct + 1;
        }
      }
      lastObj[key] = value;
    }
  }
}
1
répondu Duy Hoang 2017-06-23 04:27:01

FIRST U NEED TO DEFINE WHAT'S A GET VAR:

function getVar()
{
    this.length = 0;
    this.keys = [];
    this.push = function(key, value)
    {
        if(key=="") key = this.length++;
        this[key] = value;
        this.keys.push(key);
        return this[key];
    }
}

Que viens de lire:

function urlElement()
{
    var thisPrototype = window.location;
    for(var prototypeI in thisPrototype) this[prototypeI] = thisPrototype[prototypeI];
    this.Variables = new getVar();
    if(!this.search) return this;
    var variables = this.search.replace(/\?/g,'').split('&');
    for(var varI=0; varI<variables.length; varI++)
    {
        var nameval = variables[varI].split('=');
        var name = nameval[0].replace(/\]/g,'').split('[');
        var pVariable = this.Variables;
        for(var nameI=0;nameI<name.length;nameI++)
        {
            if(name.length-1==nameI) pVariable.push(name[nameI],nameval[1]);
            else var pVariable = (typeof pVariable[name[nameI]] != 'object')? pVariable.push(name[nameI],new getVar()) : pVariable[name[nameI]];
        }
    }
}

et utiliser comme:

var mlocation = new urlElement();
mlocation = mlocation.Variables;
for(var key=0;key<mlocation.keys.length;key++)
{
    console.log(key);
    console.log(mlocation[mlocation.keys[key]];
}
0
répondu Ag. 2013-10-02 19:52:06

Cela semble être la meilleure solution, car cela prend plusieurs paramètres du même nom en considération.

    function paramsToJSON(str) {
        var pairs = str.split('&');
        var result = {};
        pairs.forEach(function(pair) {
            pair = pair.split('=');
            var name = pair[0]
            var value = pair[1]
            if( name.length )
                if (result[name] !== undefined) {
                    if (!result[name].push) {
                        result[name] = [result[name]];
                    }
                    result[name].push(value || '');
                } else {
                    result[name] = value || '';
                }
        });
        return( result );
    }

<a href="index.html?x=1&x=2&x=3&y=blah">something</a>
paramsToJSON("x=1&x=2&x=3&y=blah"); 

console yields => {x: Array[3], y: "blah"} where x is an array as is proper JSON

j'ai plus tard décidé de le convertir en un plugin jQuery aussi...

$.fn.serializeURLParams = function() {
    var result = {};

    if( !this.is("a") || this.attr("href").indexOf("?") == -1 ) 
        return( result );

    var pairs = this.attr("href").split("?")[1].split('&');
    pairs.forEach(function(pair) {
        pair = pair.split('=');
        var name = decodeURI(pair[0])
        var value = decodeURI(pair[1])
        if( name.length )
            if (result[name] !== undefined) {
                if (!result[name].push) {
                    result[name] = [result[name]];
                }
                result[name].push(value || '');
            } else {
                result[name] = value || '';
            }
    });
    return( result )
}

<a href="index.html?x=1&x=2&x=3&y=blah">something</a>
$("a").serializeURLParams(); 

console yields => {x: Array[3], y: "blah"} where x is an array as is proper JSON

maintenant, le premier acceptera les paramètres seulement mais le plugin jQuery prendra l'url entière et retournera les paramètres sérialisés.

0
répondu jQuery Junkie 2014-08-24 22:11:43

j'avais aussi besoin de traiter + dans la partie requête de L'URL ( decodeURIComponent doesn't ), donc j'ai adapté le code de Wolfgang pour devenir:

var search = location.search.substring(1);
search = search?JSON.parse('{"' + search.replace(/\+/g, ' ').replace(/&/g, '","').replace(/=/g,'":"') + '"}',
             function(key, value) { return key===""?value:decodeURIComponent(value)}):{};

dans mon cas, j'utilise jQuery pour obtenir des paramètres de forme prêts à L'URL, puis cette astuce pour construire un objet à partir de lui et je peux alors facilement mettre à jour les paramètres sur l'objet et reconstruire L'URL de requête, par exemple:

var objForm = JSON.parse('{"' + $myForm.serialize().replace(/\+/g, ' ').replace(/&/g, '","').replace(/=/g,'":"') + '"}',
             function(key, value) { return key===""?value:decodeURIComponent(value)});
objForm.anyParam += stringToAddToTheParam;
var serializedForm = $.param(objForm);
0
répondu dlauzon 2017-05-23 12:10:32

en haut de réponse de Mike Causer's j'ai fait cette fonction qui prend en considération plusieurs params avec la même clé ( foo=bar&foo=baz ) et aussi des paramètres séparés par des virgules ( foo=bar,baz,bin ). Il vous permet également de rechercher une certaine clé de requête.

function getQueryParams(queryKey) {
    var queryString = window.location.search;
    var query = {};
    var pairs = (queryString[0] === '?' ? queryString.substr(1) : queryString).split('&');
    for (var i = 0; i < pairs.length; i++) {
        var pair = pairs[i].split('=');
        var key = decodeURIComponent(pair[0]);
        var value = decodeURIComponent(pair[1] || '');
        // Se possui uma vírgula no valor, converter em um array
        value = (value.indexOf(',') === -1 ? value : value.split(','));

        // Se a key já existe, tratar ela como um array
        if (query[key]) {
            if (query[key].constructor === Array) {
                // Array.concat() faz merge se o valor inserido for um array
                query[key] = query[key].concat(value);
            } else {
                // Se não for um array, criar um array contendo o valor anterior e o novo valor
                query[key] = [query[key], value];
            }
        } else {
            query[key] = value;
        }
    }

    if (typeof queryKey === 'undefined') {
        return query;
    } else {
        return query[queryKey];
    }
}

exemple d'entrée: foo.html?foo=bar&foo=baz&foo=bez,boz,buz&bar=1,2,3

exemple de sortie

{
    foo: ["bar","baz","bez","boz","buz"],
    bar: ["1","2","3"]
}
0
répondu Gus 2017-11-27 18:27:31