如何将数组从Textarea发布到mongoDB?

时间:2018-08-10 22:52:12

标签: javascript jquery node.js express post

我试图发布一个序列号数组,但是一旦发布,所有在textarea中添加的序列号都将作为单个字符串一起发布。

这是我的表格:

<form class="" id="serialsForm" action="/serialsnew" method="post">
 <h5 style="text-align:center">Procesar RMA</h5>

  <input placeholder="Product ID"class="input1" type="text" 
  name="productId" value="">

  <textarea id="textAreaSerial" class="newSeriales" placeholder="# 
  Seriales"name="serial[]" rows="3" cols="80" ng-trim="false"> . 
  </textarea>


  <button  type="submit" value="send" class="btn btn-primary 
   buttonNewRma" data-toggle="modal"  id="submit">
  submit
  </button>

</form>

这是我的发帖请求

 app.post("/serialsnew", function(req, res){
 var productId = req.body.productId;
 var serialNum = req.body.serial;

Seriales.create({
 product: productId,
 seriales: serialNum,

  }, function(err, serial){
    if(err){
      console.log("we coulndt add the serial numbers")
     } else{
      console.log("we just added a patch of serials")
     }
  })
  res.json(req.body);
  // res.redirect("/serialsnew")
  })

这是我的数组在res.json上的样子

enter image description here

我正在尝试创建序列号输入,以便我们可以跟踪保修时间。我想如何存储数据的示例如下。

{
productId: "laptops",
serial: [
11111,
22222, 
44444,
 ]

}

1 个答案:

答案 0 :(得分:0)

这可能是因为您使用的是文本区域,该区域用于字符串数据。

如何修改这样的数据?

//this is basically your req.body, with sample serial values
var req = {body: {serial:["2423,23423"]}};

var stringGroup = req.body.serial[0];
var serial = stringGroup.split(",").map(Number);

console.log(serial);