Ai_GirlFriend/xuniYou/EaseIM/utils/getEMKey.js
2026-01-31 19:15:41 +08:00

16 lines
343 B
JavaScript

/* 用以获取消息存储格式时的key */
const getEMKey = (loginId, fromId, toId, chatType) => {
let key = '';
if (chatType === 'singleChat') {
if (loginId === fromId) {
key = toId;
} else {
key = fromId;
}
} else if (chatType === 'groupChat') {
key = toId;
}
return key;
};
export default getEMKey;