公司開發(fā)網(wǎng)課項(xiàng)目祠肥,集成了聲網(wǎng)的SDK纸镊,其中用到了Education項(xiàng)目中的demo,記錄如下
1.解決老師退出教室后檐晕,再次進(jìn)入暑诸,老師的role信息丟失的問題
修改src\components\dialog\index.tsx
查找roomStore.exitRoom方法,在方法中添加
localStorage.removeItem('zgyy_edu_uuid');
說明:因?yàn)橹辈r(shí)會(huì)讀取localstorage中的信息辟灰,但老師退出后个榕,localstorage中的信息并沒有清除,老師再次進(jìn)入直播間芥喇,
uuid會(huì)改變西采,導(dǎo)致程序出錯(cuò)。
2.demo默認(rèn)調(diào)用getUUID方法继控,但實(shí)際業(yè)務(wù)邏輯械馆,用戶的ID就是主播自己的用戶ID
修改src\utils\api\index.ts
export?function?genUUID?():?string?{
??let?uuid?=?localStorage.getItem('zgyy_edu_uuid');
??if?(uuid)?{
????return?uuid;
??}
??uuid?=?"2";
??localStorage.setItem('zgyy_edu_uuid',?uuid);
??return?uuid;
}