我有一个带有 laravel 后端和 Vue 前端的测验应用程序。我正在为这个应用程序开发一个 API。但是,我遇到的问题是我需要一个 API 端点:从 Questions 表返回一个问题 - 但它需要:
- 每次调用该方法时随机返回一个问题
- 不是用户已经看过的问题(除非所有问题都已经看过)
到目前为止,我一直在使用 shuffle 方法对问题集合进行随机化,并依靠 Sessions 来存储 unseenQuestions 的 id。
但是,由于 API 调用是无状态的,因此会话将不起作用。我想知道有什么方法可以解决这个问题?
public function random(Module $module, $category){
// Get question ids in randomised order (for a given module + category)
$questions = Question::CategoryForModule(1, $module->id)->shuffle()->pluck('id');
// Name and Get unseenQuestions
$sessionName = 'unseenQuestions_' . $category . strval($module->id); //unseenQuestions_anatomy_2
if (session()->has($sessionName)) {
$unseenQuestions = session()->get($sessionName);
} else {
$unseenQuestions = collect($questions);
}
// Pop new Question
$newQuestionID = $unseenQuestions->shift();;
// Store unseenQuestions OR remove unseenQuestions (if it has no items);
if ($unseenQuestions->count() == 0) {
session()->forget($sessionName);
} else {
session()->put($sessionName, $unseenQuestions);
}
return new QuestionResource(Question::find($newQuestionID));
}