我在NW.js上创建桌面应用程序
我使用Webview标签模拟触摸设备,如Iphone屏幕。
chrome.debugger.attach(debuggee, '1.1', () =>{
chrome.debugger.sendCommand(debuggee, 'Emulation.setTouchEmulationEnabled',{
enabled: true,
configuration: 'mobile'
}, () => {
setTimeout(function(){
console.log('show devtool');
}, 5000)
})
})
api chrome.debugger工作正常,但是......
webview.showDevTools(true)
Webview触控模式刚刚失败。
" chrome.debugger"与" showDevTools(true)"
冲突如何在NW.js中将webview设置为触摸模式