1

我在我的网页上使用TipueSearch ,并且我有搜索框和结果页面的功能(如显示/渲染)工作。但是,搜索结果页面并未像应有的那样显示页面的结果。

这是tipuesearch_set.js的代码:

var tipuesearch_stop_words = ["and", "be", "by", "do", "for", "he", "how", "if", "is", "it", "my", "not", "of", "or", "the", "to", "up", "what", "when"];

var tipuesearch_replace = {"words": [
 {"word": "tipua", replace_with: "tipue"},
 {"word": "javscript", replace_with: "javascript"}
]};

var tipuesearch_stem = {"words": [
 {"word": "e-mail", stem: "email"},
 {"word": "javascript", stem: "script"},
 {"word": "javascript", stem: "js"}
 ]};

var tipuesearch_pages = ["/", "/approvals", "/search"];

这是我的结果页面的new.html.erb页面:

<head>
    <link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
    <link href="tipuesearch/tipuesearch.css" rel="stylesheet">
    <script src="tipuesearch/tipuesearch_set.js"></script>
    <script src="tipuesearch/tipuesearch.js"></script>
</head>
<body>
    <div style="float: left;"><input type="text" id="tipue_search_input"></div>
    <div style="float: left; margin-left: 13px;"><input type="button" id="tipue_search_button"></div>
<div id="tipue_search_content"><div id="tipue_search_loading"></div></div>
</body>

<script>
$(document).ready(function() {
    $('#tipue_search_input').tipuesearch({
        'mode': 'live'
        'liveDescription': '.header',
        'liveContent': '.container'
    });
});
</script>

就像我说的那样,搜索栏本身很好,结果页面呈现它应该的样子,唯一的问题是没有出现任何被搜索的内容。我认为问题可能出在tipuesearch_set.js页面,我把它可以路由到的页面放在那里,

var tipuesearch_pages = ["/", "/approvals", "/search"];

但我可能是错的。

如果您进入 Tipue 页面http://www.tipue.com/search/docs/live/,您可以找到我正在使用的搜索类型以及获取代码的位置。

提前感谢您的任何回答。

4

2 回答 2

0

好吧,首先,您在 旁边缺少一个逗号(我认为这是必需的)'mode': 'live'

$(document).ready(function() {
    $('#tipue_search_input').tipuesearch({
        'mode': 'live',
        'liveDescription': '.header',
        'liveContent': '.container'
    });
});

Expected token '}'这应该在您的控制台中产生错误。

于 2013-07-25T16:09:43.607 回答
0

您应该将“tipuesearch_pages”方法中的页面设置为完整的 URL。例如:“ http://www.yoursitename.com ”、“ http://www.yoursitename.com/about.html ”等等……

于 2013-12-29T23:41:52.743 回答