AJAX 发送空字符串,但在控制台中我看到它们

发布于 2025-01-10 18:07:08 字数 739 浏览 0 评论 0原文

我有一些问题,似乎我无法解决它...

我有代码

$(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文