wangeditor-team / wangEditor-plugin-upload-attachment

wangEditor upload-attachments plugin
https://www.wangeditor.com/
MIT License
36 stars 16 forks source link

不使用post方式 put方式 #14

Closed Homebrew1 closed 2 years ago

Homebrew1 commented 2 years ago

改上传为put

wangfupeng1988 commented 2 years ago

自己 fork 一下,改一改源码吧。

Homebrew1 commented 2 years ago

不暴露一个吗

wangfupeng1988 commented 2 years ago

其实按照 Restful API 的规范,这里就应该用 post ,而非 put 。

因为 put 是幂等的,url 中需要带 id ,指某个特定的资源。 而 post 是非幂等的,url 不用带 id ,多次请求会创建不同的资源。