AJAX 发送空字符串,但在控制台中我看到它们
我有一些问题,似乎我无法解决它...
我有代码
$(document).on("click","#location-routes .fa-floppy-disk",function(){
let route = [];
let job = $(this).closest('.row').attr('job');
$(this).closest('.row').find('input').each(function () {
route[$(this).attr('name')] = $(this).val();
});
route['location'] = alias;
$.ajax( {
type: "POST",
url: "white.php",
data: {job: job, info: JSON.stringify(route)},
dataType: "json",
success: function( data ) {
console.log(data);
}
});
console.log(route);
});
在控制台中,我看到应该是什么,但 ajax 正在发送空查询。
我还在此页面使用 jquery ui 自动完成和 google 地图 api。 请帮我解决它。
I have some problem, seems like I can't solve it...
I have code
$(document).on("click","#location-routes .fa-floppy-disk",function(){
let route = [];
let job = $(this).closest('.row').attr('job');
$(this).closest('.row').find('input').each(function () {
route[$(this).attr('name')] = $(this).val();
});
route['location'] = alias;
$.ajax( {
type: "POST",
url: "white.php",
data: {job: job, info: JSON.stringify(route)},
dataType: "json",
success: function( data ) {
console.log(data);
}
});
console.log(route);
});
In console, I see what should be, but ajax is sending empty query.
I also use jquery ui autocomplete, and google map api at this page.
Please, help me to fix it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论