我想以正确的方式定义接口,但我遇到了麻烦,因为即使参数为空,它也需要一个参数。
我正在使用useContext
并且我定义了这样的接口:
//react-auth0-spa.tsx
interface Auth0Context {
......
loginWithRedirect: () => void; //I know this is the problem but I don't know what to define.
......
}
在提供者中,value
是:
//react-auth0-spa.tsx
<Auth0Context.Provider
value=({
....
loginWithRedirect: (...p: string[]) => auth0Client.loginWithRedirect(...p)
....
})
>
现在,我import
将上下文添加到其他文件,如下所示:
const { isAuthenticated, loginWithRedirect, logout } = useAuth0()
这就是发生错误的地方
///components/NavBar.tsx
const { isAuthenticated, loginWithRedirect, logout } = useAuth0()
<div>
{!isAuthenticated && (
<button onClick={() => loginWithRedirect({})}>Log in</button> //Expected 0 arguments, but got 1
)}
</div>
所以问题是loginWithRedirect
期待 1 个参数,但() => loginWithRedirect({})
它是一个空对象。这个问题可以通过any
在接口内部使用来解决,但是如果我想明确定义它应该放什么?
我试过loginWithRedirect: ({}) => void
但现在loginWithRedirect: (...p: string[]) => auth0Client.loginWithRedirect(...p)
给我这样的错误Type '{}' is not assignable to type 'string'.ts(2322)
没有打字稿的源代码是https://github.com/auth0-samples/auth0-react-samples/tree/master/01-Login/src
请帮忙。