我正在建立一个登录(reactjs,nodejs)系统,该系统将根据用户类型重定向用户。
检查用户是否有效后,应该根据用户类型重定向用户。
用户类型为买方和卖方。
$url = file_get_contents('https://ru.wikipedia.org/w/api.php?format=json&action=query&prop=extracts&exintro&explaintext&redirects=1&titles=Apple');
$yummy = json_decode($url, true);
echo $yummy['extract'];
答案 0 :(得分:0)
您可以在表格中为用户类型添加另一列,例如用户类型,如果用户的电子邮件和密码正确,它将返回您的用户,则您可以选择
if(user.type === 'seller'){
res.redirect('/sellerdashboard')
} else {
res.redirect('/buyerdashboard')
}