search.js
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'use strict'
import { getYHStorageSync } from './util';
const Search_History_Key = 'Search_History_Key';
function addSearchHistory(keyword) {
if (!keyword.trim()) {
return false;
}
let list = fetchSearchHistory();
let newList = list.filter((value, i) => {
return value != keyword;
});
newList = [keyword, ...newList];
newList = newList.slice(0, 10);
try {
wx.setStorageSync(Search_History_Key, newList);
} catch (e) {
}
return true;
}
function removeSearchHistory(keyword) {
let list = fetchSearchHistory();
let newList = list.filter((value, i) => {
return value != keyword;
});
wx.setStorage({
key: Search_History_Key,
data: newList,
});
return true;
}
function clearSearchHistory() {
try {
wx.removeStorageSync(Search_History_Key);
} catch (e) {
return false;
}
return true;
}
function fetchSearchHistory() {
let value = getYHStorageSync(Search_History_Key,'search')
if (value) {
return value;
}
return [];
}
module.exports = {
addSearchHistory,
removeSearchHistory,
clearSearchHistory,
fetchSearchHistory,
};