无法在Titanium Studio中使用简单的控制台日志

时间:2012-06-26 20:28:03

标签: titanium titanium-mobile

我搜索了文档,并试图在控制台中记录变量。我正在使用:

aptana.log("My variable is " + myVariable);

当我运行应用程序时,我收到错误:

message = "Can't find variable: aptana";

对于这么简单的事情来说,这难以理解,是吗?

3 个答案:

答案 0 :(得分:2)

在文档中找不到关于aptana.log()的任何内容。请尝试使用Titanium.API.Log()。

http://docs.appcelerator.com/titanium/2.0/index.html#!/api/Titanium.API-method-log

答案 1 :(得分:0)

你刚试过吗

console.log("My variable is " + myVariable);

console.debug("My variable is" + aptana.myVariable);

答案 2 :(得分:0)

iOS10目前无法使用日志记录(https://jira.appcelerator.org/browse/TIMOB-23786),它很快就会修复。因此,如果您使用的是iOS10,则必须等待查看日志消息。