1

我有一个主页所在的搜索系统:

http://example.com/ 

结果页面(完全不同)位于:

http://example.com/?q=foo

我正在尝试设置引导程序浏览,以便它从主页开始,然后将用户带到结果页面。所以我有如下步骤:

        {
            path: '/',
            element: "#extra-sidebar-fields",
            backdrop: true,
            title: "Sophisticated Search",
            content: "In the Advanced Search area, you can make sophisticated searches against many fields. " +
                "Press \"Next\" and we'll make a query for you.",
        },
        {
            path: '/?q=roe+v+wade',
            element: 'article:first',
            title: 'Detailed Results',
            content: 'Here you can see the results for the query "Roe v Wade" sorted by relevance.'
        }

我遇到的问题是游览不明白它需要执行GET请求来加载第二步,所以我想我需要使用redirectkey什么的。

如果我在不同的路径上有搜索结果,这将非常有效,但由于主页和结果都在/,看来我被卡住了。

编辑...

公开工作,自发布此消息以来,我尝试了一些事情。首先,我认为我可以通过使用 onNext 参数来完成重定向,所以我将第一步更改为:

     {
        path: '/',
        element: "#extra-sidebar-fields",
        backdrop: true,
        title: "Sophisticated Search",
        content: "In the Advanced Search area, you can make sophisticated searches against many fields. " +
            "Press \"Next\" and we'll make a query for you.",
        onNext: function(){
            window.location = '/?q=row+v+wade'
        },
    },
    {
        path: '/?q=roe+v+wade',
        element: 'article:first',
        title: 'Detailed Results',
        content: 'Here you can see the results for the query "Roe v Wade" sorted by relevance.'
    }

但这不起作用,因为虽然重定向正确发生(很好!),但在它发生之前,用户会看到下一步弹出,并且根据他们的连接速度,它可能会在重定向完成之前看到一段时间。因此,除非我能阻止下一步弹出,否则该策略并不好。


我尝试了另一种策略,重新定义了 _isRedirect 方法:

tour._isRedirect = function(path, currentPath){
    return (path != null) && //Return false if path is undefined.
        path !== "" && (
        ({}.toString.call(path) === "[object RegExp]" && !path.test(currentPath)) ||
            ({}.toString.call(path) === "[object String]" &&
                path.replace(/\/?$/, "") !== currentPath.replace(/\/?$/, "")
                )
        );
}

通常它有一行去掉 GET 参数(path.replace(/\?.*$/, "")),所以我修改它不这样做。这种变化也有点奏效。重定向正确发生,但没有显示下一步,但不幸的是,此更改使其具有重定向循环......或类似的东西。它只是一遍又一遍地重定向。


不知道接下来我会做什么。可以使用更精通JS方式的人的帮助。

4

1 回答 1

1

尝试将行号 431 更改为此

   return (path != null) && path !== "" && (({}.toString.call(path) === "[object RegExp]" && !path.test(currentPath)) || ({}.toString.call(path) === "[object String]" && path !== currentPath));

默认情况下,该行去掉“?” 对于 currentPath 和 path。所以 whenpath = "/?q=roe+v+wade"currentPath = "/"theq=roe+v+wade被剥离,所以 path 和 currentPath 相等,因此不会启动重定向。

编辑:发现我最初的答案有问题。将第 292 行更新为

    current_path = [document.location.pathname, document.location.search, document.location.hash].join("");

current_path 变量(输入到 isRedirect 函数中)最初只获取路径名和哈希值。document.location.search 的添加告诉它也可以获取 get vars——不过我必须说,我不能 100% 确定浏览器的兼容性。

于 2014-07-25T17:05:46.487 回答