您好,登錄后才能下訂單哦!
在Yii框架中,要管理用戶的搜索歷史,你可以采用以下方法:
首先,你需要創建一個模型來存儲用戶的搜索歷史。這個模型應該包含一個數據表,用于存儲用戶ID、搜索查詢和搜索時間等信息。例如:
class SearchHistoryModel extends \yii\db\ActiveRecord
{
public static function tableName()
{
return 'search_history';
}
public function rules()
{
return [
[['user_id', 'query'], 'required'],
['created_at', 'integer'],
];
}
}
接下來,你需要創建一個控制器來處理與用戶搜索歷史相關的操作,例如添加搜索記錄、獲取用戶的搜索歷史等。例如:
class SearchHistoryController extends \yii\web\Controller
{
public function actionAddHistory()
{
$model = new SearchHistory();
$model->user_id = Yii::$app->user->id;
$model->query = Yii::$app->request->post('query');
$model->created_at = time();
if ($model->save()) {
return json(['status' => 'success']);
} else {
return json(['status' => 'error', 'errors' => $model->errors]);
}
}
public function actionGetHistory()
{
$user_id = Yii::$app->user->id;
$searchHistory = SearchHistoryModel::find()
->where(['user_id' => $user_id])
->orderBy(['created_at' => SORT_DESC])
->all();
return json(['history' => $searchHistory]);
}
}
為了方便用戶查看他們的搜索歷史,你可以創建一個視圖來顯示搜索歷史。例如,在views/search-history/index.php
文件中添加以下內容:
<?php
/* @var $this yii\web\View */
/* @var $searchHistory array */
$this->title = '搜索歷史';
?>
<h1>搜索歷史</h1>
<ul>
<?php foreach ($searchHistory as $history): ?>
<li>
<span><?php echo date('Y-m-d H:i:s', $history->created_at); ?></span> - <?php echo $history->query; ?>
</li>
<?php endforeach; ?>
</ul>
在config/web.php
文件中,添加以下路由以處理搜索歷史相關的請求:
'urlManager' => [
// ...
'components' => [
// ...
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [
'search-history/add' => 'search-history/add-history',
'search-history/get' => 'search-history/get-history',
],
],
],
],
在你的前端頁面中,添加一個搜索框和一個查看搜索歷史的按鈕。當用戶在搜索框中輸入查詢并提交時,調用search-history/add
路由以添加搜索記錄。當用戶點擊查看搜索歷史按鈕時,調用search-history/get
路由以獲取并顯示搜索歷史。
例如:
<input type="text" id="search-query" placeholder="請輸入搜索內容">
<button id="add-search-history">添加搜索記錄</button>
<button id="get-search-history">查看搜索歷史</button>
<script>
document.getElementById('add-search-history').addEventListener('click', function() {
var query = document.getElementById('search-query').value;
$.post('/search-history/add', {query: query}, function(response) {
if (response.status === 'success') {
alert('搜索記錄已添加');
} else {
alert('添加搜索記錄失敗');
}
});
});
document.getElementById('get-search-history').addEventListener('click', function() {
$.get('/search-history/get', function(response) {
if (response.history) {
// 顯示搜索歷史
} else {
alert('沒有搜索歷史');
}
});
});
</script>
通過以上步驟,你可以在Yii框架中管理用戶的搜索歷史。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。