Hpyer

Results 7 comments of Hpyer

以上几位点击按钮没反应的兄弟们,我找到问题原因了。是源码还有几处地方需要做修改。 1. `renderer-process/print/index.js`文件第8行`ipcRenderer.send('print-start', 'GT800')`,这里的`GT800`是打印机名称,要更换为你电脑所连接的打印机的名称(查看打印机名称的方法见下文),或者更改为空字符串,表示调用系统的默认打印机。同理,该文件中第15行、第27行处的`GT800`也要做对应修改。 2. `sections/print/print1.html`文件第33行,`require('./index.js');`改为`require('./print1.js');` 3. `index.html`文件第22行,`src="./sections/print/printFour.html"`改为`src="./sections/print/print2.html"` 这样就可以正常打印了。 附,查看打印机名称的方法: `main.js`文件第60行处,加入下面代码,就可以在项目启动的时候看到电脑所连接的所有打印机信息。`name`属性就是需要的打印机名称。 ``` console.log('printers', demoWindow.webContents.getPrinters()); ``` 详细代码见 #2

I got the same problem. #### Versions: - webdav: `5.8.0` - docker: `26.1.3` #### Operations: ✅ Create file ✅ Rename file ✅ Update file content ✅ Delete file ❌ Copy...

I find out the problem finally!!! The tag `latest` of docker image `hacdias/webdav` is not the latest! 😂😂😂 See the picture below: `v5.8.0` works well ! @buse88 兄弟,如果你也是docker装的,看下是不是也用了默认的 `latest` 标签,改成...

Docker mirror's problem. I pulled the latest version after change mirror. Thanks~

@buse88 那你再对比下我的nginx配置。特别是下面这句,域名后面的 `/` 不能少。 ``` if ($http_destination ~ "^https://webdav.example.com/(?(.+))") { set $dest /$path; } ```

> 你是用哪个软件的呢,我使用的是RaiDrive,会不会是软件的原因 我就用的 windows 自带的 `映射网络驱动器`

最后的 `console.log({ check });` 不打印,说明前面的 `update` 操作报错了,你可以 `try catch` 看下错误原因。sdk包执行的时候,如果捕获到未处理的错误,会认为业务处理失败。 `handlePaid` 本身不执行闭包,闭包里 `return true` 表示业务处理成功,微信也就不会再重推消息。 `server.serve()`的时候才是真的执行,它执行完会返回一个 Response 对象,你需要把对象的内容输出。如: ```js const server = app.getServer(); server.handlePaid(async message => { // ... return...