javascript 输入组到json

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 输入组到json相关的知识,希望对你有一定的参考价值。

var group_fields = [];
// Loop through the fields
theForm.serializeArray().forEach(function(entry,i) {
  // Get the index and prop name from the entry name
  var nameparts = /^([a-zA-Z0-9_]+)\[(.+)\]\[(.*)\]$/.exec(entry.name);
  // Get the group entry if we already have it
  var group = group_fields[nameparts[2]];
  if (!group) {
    // We don't, create and add it
    group = group_fields[nameparts[2]] = {};
  }
  // Set the property (address, street, etc.)
  group_fields[nameparts[2]][nameparts[3]] = entry.value;
});

以上是关于javascript 输入组到json的主要内容,如果未能解决你的问题,请参考以下文章

部分JSON解组到Go中的地图中

将写入操作映射到 Dataframe 行组到不同的增量表

ClickHouse 元组到列

类型元组到实例元组

MongoDB 组到 C# API

休眠位数组到实体映射