You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import ' dart:convert ' ;
import ' Storage.dart ' ;
class SearchServices {
static setHistoryData ( keywords ) async {
/*
1、获取本地存储里面的数据 (searchList)
2、判断本地存储是否有数据
2.1、如果有数据
1、读取本地存储的数据
2、判断本地存储中有没有当前数据,
如果有不做操作、
如果没有当前数据,本地存储的数据和当前数据拼接后重新写入
2.2、如果没有数据
直接把当前数据放在数组中写入到本地存储
*/
try {
List searchListData = json . decode ( await Storage . getString ( ' searchList ' ) ) ;
print ( searchListData ) ;
var hasData = searchListData . any ( ( v ) {
return v = = keywords ;
} ) ;
if ( ! hasData ) {
searchListData . add ( keywords ) ;
await Storage . setString ( ' searchList ' , json . encode ( searchListData ) ) ;
}
} catch ( e ) {
List tempList = new List ( ) ;
tempList . add ( keywords ) ;
await Storage . setString ( ' searchList ' , json . encode ( tempList ) ) ;
}
}
static getHistoryList ( ) async {
try {
List searchListData = json . decode ( await Storage . getString ( ' searchList ' ) ) ;
return searchListData ;
} catch ( e ) {
return [ ] ;
}
}
static clearHistoryList ( ) async {
await Storage . remove ( ' searchList ' ) ;
}
static removeHistoryData ( keywords ) async {
List searchListData = json . decode ( await Storage . getString ( ' searchList ' ) ) ;
searchListData . remove ( keywords ) ;
await Storage . setString ( ' searchList ' , json . encode ( searchListData ) ) ;
}
}