企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 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 ... ~~~