首页 > 编程 > Ruby > 正文

ruby使用restclient上传服务器本地文件示例

2020-03-29 12:10:51
字体:
来源:转载
供稿:网友

使用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 #返回结果

 

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表