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.
如何实现lb web-client import --import file.csv --full http://service-uri与使用 cURL 等工具发出的 HTTP 请求相同的功能?
lb web-client import --import file.csv --full http://service-uri
如果要更新数据,可以使用:
curl -i -X POST -H "Content-Type: text/csv" --data-binary @file.csv http://service-uri
或者如果你想替换数据,你可以使用:
curl -i -X PUT -H "Content-Type: text/csv" --data-binary @file.csv http://service-uri