使用自动填充功能获取Google自定义搜索的分析结果

时间:2012-06-14 07:20:36

标签: google-analytics google-custom-search

我们在网站上使用Google自定义搜索并启用了自动填充功能。通过在网站的页面上放置“获取代码”代码来实现自定义搜索。标题中没有sitesearch框,因此我们不会使用查询字符串参数移动到搜索页面。

当我尝试将搜索引擎链接到谷歌分析帐户(包含在所有页面上)时,我被迫输入查询参数。 我没有查询参数(除非google javascript在内部使用了一些)所以有人能告诉我如何配置它吗?

搜索只使用Google提供的JavaScript。

google.load('search', '1', { language: 'fi', style: google.loader.themes.MINIMALIST });
google.setOnLoadCallback(function () {
    var customSearchOptions = {};
    customSearchOptions['adoptions'] = { 'layout': 'noTop' };
    var customSearchControl = new google.search.CustomSearchControl(
        'xxxx', customSearchOptions);

    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
        customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
        var options = new google.search.DrawOptions();
        options.setAutoComplete(true);
        customSearchControl.draw('cse', options);
        if (parseQueryFromUrl() != null) {
            customSearchControl.execute(parseQueryFromUrl(), 1, null);
        }

    }, true);

1 个答案:

答案 0 :(得分:0)