gpt4 book ai didi

javascript - 在 Javascript 中生成我的网站的 URL

转载 作者:行者123 更新时间:2023-12-02 17:39:19 28 4
gpt4 key购买 nike

我有这个函数,负责为我所在的当前环境生成 HTTP URL。当我在本地主机上工作时,该函数返回如下内容:

http://localhost/mysite

在生产过程中,它应该仅返回我网站的域名,例如:

http://mywebsite.org

情况并非总是如此。该功能部分有效,我不明白为什么。我使用此函数将 AJAX 表单提交到网站周围的 PHP 脚本,并且它可以工作,但是,当我尝试使用此函数将用户重定向到应包含完整 HTTP URL 的特定位置时,它会将我发送到本地主机网址。

这是我编写的函数:

function generate_site_url()
{
var domain = window.location.origin;
if (domain.indexOf('localhost'))
{
return 'http://localhost/mysite/';
}
else
{
return 'http://mywebsite.org/';
}
}

这是导致错误重定向问题的重定向函数:

function redirect(to, mode, delay, internal)
{
mode = (typeof mode === "undefined") ? 'instant' : 'header';
delay = (typeof delay === "undefined" || delay === null) ? 0 : delay;
internal = (typeof internal === "undefined" || internal === true) ? true : false;

if (to)
{
to = ((internal) ? generate_site_url() : '') + to;
}
else
{
to = currentLocation();
}

setTimeout(function(){
window.location = to;
}, delay);
}

这是导致问题的 redirect 的示例用法:

redirect('admin/index', 'header', 3000);

上面的函数调用将我发送到http://localhost/mysite/admin/index,即使我正在生产中并且我的域案例应该适用。

这是怎么回事?我似乎无法弄清楚。

最佳答案

改变

if (domain.indexOf('localhost'))

if (domain.indexOf('localhost') != -1)

或者

if (~domain.indexOf('localhost'))

关于javascript - 在 Javascript 中生成我的网站的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22350646/

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