如何检查 KRL 中的路径并与之交互?
我有一条记录,用于跟踪 KRL 中的应用程序历史记录。我正在寻找一种简单的方法来调试踪迹,包括查看当前踪迹上的内容并清除它。
KRL 有没有简单的方法可以做到这一点?
I have a trail that I'm using to track app history in KRL. I'm looking for an easy way to debug the trail, including seeing what is currently on the trail and clearing it.
Is there an easy way to do that in KRL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说,查看路径上的内容的最简单方法是将其内容输出到浏览器控制台。
多次运行规则集后的 firebug 输出:
要清除包括路径在内的实体变量,我通常只编写一个选择的规则一个不属于我的应用程序体验的域,并在应用程序在该域上运行时清除变量。
完整示例应用:
The easiest way, for me, to see what is on the trail is to output it's contents to the browser console.
firebug output after running ruleset several times:
To clear entity variables including trails, I usually just write a rule that selects on a domain that isn't part of my app's experience and clear the varaibles when the app is run on that domain.
Full example app: