【发布时间】:2022-01-03 08:02:15
【问题描述】:
import { ArrowBackOutlined } from "@material-ui/icons";
import { Link, useLocation } from "react-router-dom"; import
"./watch.scss";
export default function Watch() { const location = useLocation();
const movie = location.movie; return ( Home <video className="video"
autoPlay progress controls src={ movie.video } /> ); }
我尝试使用 useLocation 让它显示来自数据库的视频,但它给了我一个错误,提示“视频”未定义
【问题讨论】:
标签: node.js reactjs video undefined mern