Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在调试(本地)模式下运行(未安装在 Rally 中),如何在 SDK2 中以编程方式判断?
我在 Rally.app.Context 中寻找一些东西,但没有看到任何明显的东西
据我所知,在上下文中没有任何内容用于此目的,但这里有一个技巧可以告诉您它是在 Rally 中运行还是在外部运行:
if (window.parent.Rally.alm) { console.log('inside'); } else{ console.log('outside'); }