ruby使用restclient上传服务器本地文件示例
程序员文章站
2022-03-29 22:46:35
使用restclient上传服务器本地文件
复制代码 代码如下:url = 'http://xx' #post到urlfield_hash = {key: key, to...
使用restclient上传服务器本地文件
复制代码 代码如下:
url = 'http://xx' #post到url
field_hash = {key: key, token: token} #post数据
request = restclient.post url, field_hash.merge(file: file.new(file.join('public', "#{params[:logo]}"), 'rb')) #上传文件
reponse = request.to_s #返回结果
下一篇: ruby 学习笔记(2) 类的基本使用