🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# EnableLogging `Get|Let {Boolean}` 启用从VBA-Web记录请求和响应以及其他内部消息。 如果某些内容无法按预期工作,那么应该是调试VBA-Web的第一步。 (日志显示在立即窗口中(`查看>立即窗口`或`ctrl + g`) ~~~vb Dim Client As New WebClient Client.BaseUrl = "https://api.example.com/v1/" Dim RequestWithTypo As New WebRequest RequestWithTypo.Resource = "peeple/{id}" RequestWithType.AddUrlSegment "idd", 123 '// 在执行请求之前启用日志记录 WebHelpers.EnableLogging = True Dim Response As WebResponse Set Response = Client.Execute(Request) '// Immediate window: '// --> Request - (Time) '// GET https://api.example.com/v1/peeple/{id} '// Headers... '// '// <-- Response - (Time) '// 404 ... ~~~