首页 > 学院 > 开发设计 > 正文

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

2019-10-26 19:22:49
字体:
来源:转载
供稿:网友

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

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