gpt4 book ai didi

php - ajax发布请求url

转载 作者:行者123 更新时间:2023-12-01 07:06:53 25 4
gpt4 key购买 nike

我的应用程序中出现了一个错误,这并不是第一次发生,我不明白为什么要这样做。我有一个在特定路由中发出的发布请求,但在我的应用程序中,对我的特定 url 进行 ajax 调用是从该页面发送到当前 url。我的ajax代码:

$.ajax({
method: 'POST',
async: false,
url: '/galleries/heatMap/'.idGallery,
type: 'POST',
data: {img: url, _token: token, idGallery: idGallery, productStat: productStat, tagStat: tagStat}
}).done(function (msg) {
console.log("Save HeatMap");

tagStat = {
title: "",
clicks: 0,
product_id: 0
};
productStat = {
clicks: 0,
product_id: 0
};
}).fail(function () {
console.log("Error ocurred");

});

我当前发帖的网址是:http://domain.com/models/1/embed/

由于某种原因,该帖子被发送到“../models/1/embed/”,而不是 ajax 的 url。有人知道发生了什么吗?

最佳答案

您将您的网址指定为

 url: '/galleries/heatMap/'.idGallery,

用这个替换这个,它可能会起作用

 url: '/galleries/heatMap/'+idGallery,

关于php - ajax发布请求url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40215458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com