Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如我有文本文件bbb.txt,它的路径是http://example.com/bbb.txt. 文件的内容将是:
bbb.txt
http://example.com/bbb.txt
Hello WORLD!
但现在我想给Hello SO!它添加字符串。是否可以使用 curl 库,仅上传Hello SO以在服务器上获取此类文本: Hello WORLD! Hello SO!
Hello SO!
Hello SO
Hello WORLD! Hello SO!
标准 HTTP 上传 (PUT) 没有“范围”之类的东西。如果您愿意,您可以编写一个服务器端来理解某些标头或格式(通过 HTTP),然后确保您的客户端(例如 curl)可以使用它发送数据。