好吧,这似乎是最直接的事情,但我真的不知道为什么要这样做,也不知道其他人有这个问题。
这是我的问题,我像这样发送 POST 请求;
$.ajax({
type: "POST",
url: '/user/sell',
data: data,
success: function(data) {
console.log('Call was successful');
}
});
在数据对象中有一个名为 的数组items。当我记录数据对象时它很好,就像它应该的那样,但是当我在我的快速函数中记录数据对象时,items数组items[]无缘无故地更改为..
节点
'items[]': '15716345'
JS(浏览器)
items: [15716345]
知道这里发生了什么吗?
下面是代码的完整版本。 整个区块(前端) // 验证地址 if($('.block.payment .wrapper input:eq(0)').val() !== $('.block.payment .wrapper input:eq(1) ').val()){ return error('字段不匹配'); }
// Get known data
var type = $('.body.inventory .methods .method.selected').data('type'),
items = [];
var data = {
type,
address: $('.block.payment .wrapper input:eq(0)').val()
}
if(type === 'steam'){
var app = $('.body.inventory .sub-methods .method.selected').data('app');
data['app'] = app;
$('.body.inventory .item[data-app="'+app+'"].selected').each(function(){
items.push($(this).data('id'));
});
}else{
$('.body.inventory .item[data-type="'+type+'"].selected').each(function(){
items.push($(this).data('id'));
});
}
data['items'] = items;
// Execute route or smt
$.ajax({
type: "POST",
url: '/user/sell',
data: data,
success: function(data) {
console.log('Call was successful');
}
});
后端
router.post('/sell', function(req, res, next) {
try {
console.log(req.body);
res.send({
success: 1
});
} catch(e) {
if(e) console.log(e);
res.send({
success: 0,
error: e
});
}
});
慕沐林林
杨魅力
相关分类