作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的 iOS 应用程序中使用 Google Analytics,并尝试使用他们的用户计时功能来记录我的后端 HTTP 服务器的响应速度。代码如下所示:
NSTimeInterval interval = [date timeIntervalSinceNow];
[self.tracker trackTimingWithCategory:@"request"
withValue:interval
withName:request.URL.absoluteString
withLabel:nil];
但是,Google Analytics 的报告中没有显示任何内容,您知道吗?我该如何调试这个?
最佳答案
我认为您在这里遇到的问题之一是第二个参数的负值。可能会尝试这样的事情:
NSTimeInterval interval = -[date timeIntervalSinceNow];
[self.tracker trackTimingWithCategory:@"request"
withValue:interval
withName:request.URL.absoluteString
withLabel:nil];
注意第一行中额外的“-”。
另一种方法是使用其他跟踪机制之一,例如事件/自定义变量或指标。
关于ios - 如何在 iOS 分析 SDK 中使用 Google 的用户计时功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14093155/
我是一名优秀的程序员,十分优秀!