We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用Call_GetStatus时,使用: type PTZVector struct { PanTilt Vector2D xml:"onvif:PanTilt" Zoom Vector1D xml:"onvif:Zoom" } 无法绑定xml数据, 在我修改为: type PTZVector struct { PanTilt Vector2D xml:"PanTilt" Zoom Vector1D xml:"Zoom" }后正常绑定数据
xml:"onvif:PanTilt"
xml:"onvif:Zoom"
xml:"PanTilt"
xml:"Zoom"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
使用Call_GetStatus时,使用:
type PTZVector struct {
PanTilt Vector2D
xml:"onvif:PanTilt"
Zoom Vector1D
xml:"onvif:Zoom"
} 无法绑定xml数据,
在我修改为:
type PTZVector struct {
PanTilt Vector2D
xml:"PanTilt"
Zoom Vector1D
xml:"Zoom"
}后正常绑定数据
The text was updated successfully, but these errors were encountered: