sys-shim icon indicating copy to clipboard operation
sys-shim copied to clipboard

使用前端语言快速实现桌面程序。

Results 2 sys-shim issues
Sort by recently updated
recently updated
newest added

同样是中间有 null 的两个数组,为什么第一个数组出现了数据丢失? ## 起因 ``` js await native.unpack([1, null, 2]) // 错误 // 实例输出 [undefined, 1] // 预期输出 [undefined, 1, null, 2] await native.table.unpack([1, 2, null, 3]) // 正确...

> node run.js node:child_process:175 p.open(fd); ^ Error: EBADF: bad file descriptor, uv_pipe_open at Object._forkChild (node:child_process:175:5) at setupChildProcessIpcChannel (node:internal/bootstrap/pre_execution:451:30) at prepareMainThreadExecution (node:internal/bootstrap/pre_execution:71:3) at node:internal/main/run_main_module:9:1 { errno: -4083, code: 'EBADF', syscall: 'uv_pipe_open'...