cckowin
cckowin
传入参数modal和parent好像不支持,可以创建模态窗口吗
主窗口用openwin打开一个modal对话框后,有没有方便的方法在两个窗口间通信,还是必须用ipcMain来中转一下,就像https://github.com/balena-io-modules/electron-modal这个插件提供的功能
我的手机是魅蓝E2,android版本是6.0.1,使用Tap(x,y)可以正常的点击,但是RootAutomator的tap和press都没有啥效果,这个几个函数对android的版本有啥要求吗,auto.js用的是3.0.0和4.0.1都试过了
is there any way to change the attribute tag name using this module like xml2js eg. ` ` to produce a result like this ` test: { attributeName: "test", }...
这个javascript能直接调用吗,不用typescript的话是否可以使用
在做导出excel功能的时候 如果data的数据比较大 下面的代码在renderExcel的时候会很耗时 ``` const fs = require('mz/fs'); const ejsexcel = require('ejsedcel'); const str = await fs.readFile(__dirname + './template.xlsx'); await ejsexcel.renderExcel(temlate, data); ``` 如果是大文件的下载我可以通过`fs.createReadStream(filepath)`的方式边读边传输 ejsexcel在这种情况下该如何处理啊,能做到边渲染边传输吗