Titanium Studio for Android:Ti.API.info() 在哪里打印消息?

发布于 2024-12-15 03:08:24 字数 103 浏览 0 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

老街孤人 2024-12-22 03:08:24

Ti.API.info() 打印到控制台。所以,我有一个这样的函数:

function OnAppResume()
{
  Ti.API.info('***---> OnAppResume');
}

$.window.addEventListener("open", function() {
    var activity = $.window.activity;
    activity.addEventListener('resume', OnAppResume);
});

我运行它。我将在控制台中得到此响应。

[INFO][TiAPI ( 702)] ***---> OnAppResume

顺便说一句,$. 是 Alloy MVC 的新约定。不要让它让你失望。希望有帮助。

Ti.API.info() prints to the console. So, I have a function like this:

function OnAppResume()
{
  Ti.API.info('***---> OnAppResume');
}

$.window.addEventListener("open", function() {
    var activity = $.window.activity;
    activity.addEventListener('resume', OnAppResume);
});

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.

笨死的猪 2024-12-22 03:08:24

我个人使用DDMS控制台登录Eclipse。 Ti.API.info() 在 Titanium Studio 中不适用于 Android,但它会记录到控制台。请参阅附图。

Eclipse

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.

Eclipse

美胚控场 2024-12-22 03:08:24

Ti.API.info() 在控制台中打印括号内的内容。
例如:

btnSubscribePush.addEventListener('click', function(){
   Ti.API.info('subscribed to push notification');//Printing your message to console
   wndSubscribe.close();//Closing the window
   Ti.API.info('Your message printing here');//Printing your message to console
});

您只需检查控制台窗口,消息将打印在控制台中,如图

Ti.API.info() prints whatever inside the brackets in the console.
for example :

btnSubscribePush.addEventListener('click', function(){
   Ti.API.info('subscribed to push notification');//Printing your message to console
   wndSubscribe.close();//Closing the window
   Ti.API.info('Your message printing here');//Printing your message to console
});

You just check the console window, the message will be printed in the console as shown in the figure

Ti.API.info

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文