使用 Google Analytics 跟踪事件时需要对标签进行 URL 编码吗?
调用Google Analytics的trackEvent函数时,是否需要对标签值进行URL编码?
_gaq.push(['_trackEvent', '我的类别', '我的动作', '这部分需要url编码吗?']);
when calling Google Analytics' trackEvent function, do I need to URL encode the label value?
_gaq.push(['_trackEvent', 'my category', 'my action', 'does this part need url encoding?']);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,但是如果您将字符串包装在
''
中,那么您需要使用\'
转义其中包含的任何'
。请参阅此文档页面,其中显示了您的问题示例,其中包含尚未进行网址编码的空格:
No but if you are wrapping your string in
''
then you need to escape any'
contained in it with\'
.See this documentation page which shows samples of your question with spaces in that have not been url encoded: