我有包含更多(动态)包装段的表单,我正在尝试创建可以通过 jquery ajax 传递并存储在 DB 中的对象。
问题是如何创建多维对象?
这是我的代码
D B:
formID wrapSegmentID
pkt formID FK
hldy st
tt
rt
HTML:
<form name="uniqID>
<div name="ws" class="wrapSegment">
<input name="st">
<input name="tt">
<input name="rt">
</div>
<div name="ws" class="wrapSegment">
<input name="st">
<input name="tt">
<input name="rt">
</div>
<!--it can be more .wrapSegment divs-->
<!--it can be more .wrapSegment divs-->
<!--it can be more .wrapSegment divs-->
<label>
<input class="hldy" type="checkbox"> hldy
</label>
<label>
<input class="pkt" type="checkbox"> pkt
</label>
<a class="save">Save</a>
</form>
JS
$('.hero-unit').on('click','.save', function (){
var day = {
dayID : "id",
pkt: "pkt",
hldy: "hldy",
ws: $(".wrapSegment").each(function() {
var inputs = $(this).children(":input");
var wsObj = $.map(inputs, function(item, y) {
return {
key: item.name,
value: $(item).val()
};
});
return (wsObj);
})
};
console.log(day); //
return false;
});
我得到“ws:父div”
但我希望这样
Object { dayID="id", pkt=0, hldy=1, ws=[Object { Object { key="1",value="1"}, Object { key=2, value=2}, {Object { key="1",value="1"}, Object { key=2, value=2} ] }
也许我试图提交表单的方式是错误的?