use-go / onvif

full and enhanced onvif protocol stack in golang.
MIT License
384 stars 180 forks source link

Call_GetStatus无法绑定数据到结构体 #49

Open xy-java opened 2 months ago

xy-java commented 2 months ago

使用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" }后正常绑定数据