iissnan/hexo-theme-next

local_search 跳转的链接不正确

Closed this issue · 1 comments

搜索后, 点击标题, 跳转地址不正确.
最终跳转的地址为: http://0.0.7.225/09/05/xxxxxxxx

我的博客地址是: http://blog.siven.net

F12看了下, 搜索结果源貌似href多了一个斜杠..

<a href="//2017/09/05/hello-world/" class="search-result-title"><b class="search-keyword">He</b>llo World</a>

简单粗暴, 修改localsearch.swig源码:

//var articleUrl = decodeURIComponent(data.url);
var articleUrl = decodeURIComponent(data.url).substring(1);//截取第一位/斜杠

简单粗暴的方式解决问题..