Titanium Studio for Android:Ti.API.info() 在哪里打印消息?
我正在将 Titanium Studio 用于我的第一个 Android 应用程序。在文档中,我遇到了 Ti.API.info() 来打印任何调试消息。但我无法弄清楚它到底打印在哪里。请帮我。
I am using Titanium Studio for my first Android App. In the documentation I've come across Ti.API.info() to print any debug message. But I am not able to figure out where exactly does it print. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Ti.API.info() 打印到控制台。所以,我有一个这样的函数:
我运行它。我将在控制台中得到此响应。
[INFO][TiAPI ( 702)] ***---> OnAppResume
顺便说一句,
$.
是 Alloy MVC 的新约定。不要让它让你失望。希望有帮助。Ti.API.info() prints to the console. So, I have a function like this:
I run it. I'll get this response in the console.
[INFO][TiAPI ( 702)] ***---> OnAppResume
BTW,
$.
is the new convention for Alloy MVC. Don't let it throw you off. Hope that helps.我个人使用DDMS控制台登录Eclipse。 Ti.API.info() 在 Titanium Studio 中不适用于 Android,但它会记录到控制台。请参阅附图。
I personally use the DDMS console log in Eclipse. Ti.API.info() doesn't work for Android in Titanium Studio however it does log to the console. See attached image.
Ti.API.info()
在控制台中打印括号内的内容。例如:
您只需检查控制台窗口,消息将打印在控制台中,如图
Ti.API.info()
prints whatever inside the brackets in the console.for example :
You just check the console window, the message will be printed in the console as shown in the figure