如何通过使用像lb web-client import --import file.csv --full http://service-uri这样的工具发出HTTP请求来实现与cURL相同的功能?
发布于 2015-10-01 11:24:32
如果要更新数据,可以使用:
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-urihttps://stackoverflow.com/questions/32885405
复制相似问题