我正在尝试使用以下代码导入YouTube视频:
var socket = io.connect('IPADDRESS');
let joinedRoomName, current, others;
/* Click Each Room list Function */
function joinChat() {
joinedRoomName = window.event.target.id; // Get clicked id (ROOM NAME)
others = document.getElementById(joinedRoomName).innerHTML; // Talk with this person
$('.msg_history').empty(); // to Remove Previous Chats
socket.emit('JoinRoom', {
joinedRoomName,
leave: current,
});
current = joinedRoomName;
console.log(`CURRENT ROOM : ${current}`);
console.log(`NewJoined ROOM ${joinedRoomName}`)
}
,并希望在单独的窗口中显示GUI输出。那么有人可以建议我在新窗口中显示的方法吗?
答案 0 :(得分:1)
(此处为 Spyder维护程序),目前暂时无法(2019年2月)。
注意:我们制定了一些计划,允许用户在专用面板中查看在控制台中生成的Web内容,但是还没有具体的内容。