gpt4 book ai didi

javascript - 为什么Jquery AJAX要在相对路径中添加一些路径?

转载 作者:行者123 更新时间:2023-11-28 17:33:06 25 4
gpt4 key购买 nike

我有下面的代码

$.ajax({
url: "search/prefetch",
success: function (data) {
$(".result").html(data);
alert("Load was performed.");
},
dataType: "json"
});

但是,该请求是向 http://<myhost>/<another-path>/search/prefetch 提出的。

当前页面为 http://<myhost>/<another-path>/<some-other-paths> 时执行此请求

如何向http://<myhost>/search/prefetch提出请求?

最佳答案

只需在您的网址前添加 /

$.ajax({
url: "/search/prefetch",
success: function (data) {
$(".result").html(data);
alert("Load was performed.");
},
dataType: "json"
});

您当前正在做的是告诉浏览器获取当前的 url 路径并将该路径附加到其末尾。通过在其前面添加 / 前缀,您现在可以告诉浏览器获取当前的 url 路径并将其替换为新路径。

关于javascript - 为什么Jquery AJAX要在相对路径中添加一些路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49832630/

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