html5--video 无法自动播放
摘要:在video标签中,使用autoplay='autoplay'无法自动播放。 解决方法: 在video标签中,添加muted属性: <video muted src='xx.mp4' autoplay muted></video> 解释: muted属性设置或返回视频是否应该被静音 true:关闭声
阅读全文
antd hooks --Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?
摘要:问题描述: 在Antd Form 组件中,当子组件使用Hooks自定义 Function component时,提示以下警告错误。 warning:Function components cannot be given refs. Attempts to access this ref will f
阅读全文