-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Open
Description
页面标题动态设置,如:在iOS 26系统下未能成功设置
const queryParams = new URLSearchParams(window.location.search);
const type = queryParams.get('type') ?? '1';
useTitle(`${type === '1' ? '小朋友' : '大朋友'}`)替代方案:
const queryParams = new URLSearchParams(window.location.search);
const type = queryParams.get('type') ?? '1';
useEffect(() => {
const title = `${type === '1' ? '小朋友' : '大朋友'}`
document.title = title
}, [])Metadata
Metadata
Assignees
Labels
No labels