【发布时间】:2020-12-18 16:57:23
【问题描述】:
在NextJS documentation 中,我了解到我们可以使用 URL 对象,它会自动格式化以创建 URL 字符串。
在功能上它没有问题,但控制台上出现以下错误:
Warning: Failed prop type: Invalid prop `href` of type `object` supplied to `ForwardRef(ButtonBase)`, expected `string`.
这是一个最小的 CodeSandbox 复制:https://codesandbox.io/s/next-materialui-objecturl-rmprr?file=/pages/index.js
// index.js
import React from "react";
import Button from "@material-ui/core/Button";
import Link from "../src/Link";
export default function Index() {
return (
<div>
<Button
component={Link}
href={{
pathname: "/about",
query: { name: "test" }
}}
naked
variant="contained"
>
Link button with url object
</Button>
</div>
);
}
// Link.js
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { useRouter } from 'next/router';
import NextLink from 'next/link';
import MuiLink from '@material-ui/core/Link';
const NextComposed = React.forwardRef(function NextComposed(props, ref) {
const { as, href, ...other } = props;
return (
<NextLink href={href} as={as}>
<a ref={ref} {...other} />
</NextLink>
);
});
NextComposed.propTypes = {
as: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
href: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
prefetch: PropTypes.bool,
};
// A styled version of the Next.js Link component:
// https://nextjs.org/docs/#with-link
function Link(props) {
const {
href,
activeClassName = 'active',
className: classNameProps,
innerRef,
naked,
...other
} = props;
const router = useRouter();
const pathname = typeof href === 'string' ? href : href.pathname;
const className = clsx(classNameProps, {
[activeClassName]: router.pathname === pathname && activeClassName,
});
if (naked) {
return <NextComposed className={className} ref={innerRef} href={href} {...other} />;
}
return (
<MuiLink component={NextComposed} className={className} ref={innerRef} href={href} {...other} />
);
}
Link.propTypes = {
activeClassName: PropTypes.string,
as: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
className: PropTypes.string,
href: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
naked: PropTypes.bool,
onClick: PropTypes.func,
prefetch: PropTypes.bool,
};
export default React.forwardRef((props, ref) => <Link {...props} innerRef={ref} />);
【问题讨论】:
标签: reactjs material-ui next.js