import
React
,
{
useRef
,
useEffect
}
from
'react'
export
default
function
WWOpenData
({
type
,
openid
})
{
const
ref
=
useRef
(
null
)
useEffect
(()
=>
{
WWOpenData
.
bind
(
ref
.
current
)
})
return
<
ww
-
open
-
data
ref
={
ref
}
type
={
type
}
openid
={
openid
}
/>
}
我使用的react,我看官方说过window下浏览器兼容问题,需要在次用bind更新一次, 我这里已经做了, 但是现在就是除了window下,其他平台都是可以的,求解
请问怎么解决的
已解决