我从事AppMaker项目已有大约一周的时间,从今天开始,进入预览模式时,通常会出现在窗口底部的控制台丢失了。
我已经检查了URL,并且那里有“ Console = 1”参数。将该值更改为0,然后再次返回将无效。
这是常见原因吗?
答案 0 :(得分:0)
控制台可能只是缩小到了窗口的底部,所以您看不到它(它记住了先前会话的位置)。如果您无法抓住屏幕底部附近的手柄将其放大,则可以按照以下说明操作(在Chrome中):
将此代码粘贴到控制台中,然后按Enter。
var console = app.currentPage.getElement().parentElement.parentElement.parentElement.parentElement.parentElement.children;
console.item(1).style.bottom = '159px';
console.item(2).style.bottom = '163px';
console.item(3).style.height = '159px';
这应将App Maker控制台的大小调整回其默认位置。