我搜索了文档,并试图在控制台中记录变量。我正在使用:
aptana.log("My variable is " + myVariable);
当我运行应用程序时,我收到错误:
message = "Can't find variable: aptana";
对于这么简单的事情来说,这难以理解,是吗?
答案 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,则必须等待查看日志消息。