热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

HTTP请求路径在使用Net::HTTP时为空-HTTPrequestpathisemptyinworkingwithNet::HTTP

SoIjutcreatedacontrollerlikethis:我创建了这样的控制器requirenethttpclassHowdyController<A

So I jut created a controller like this:

我创建了这样的控制器

require 'net/http'
class HowdyController 

and my route is like this:

我的路线是这样的:

get "howdy/show"

and my view is lie this:

我的观点是这样的

Howdy#show

<%= "The call to example.com returned this: #{@resp}" %>

But when I go to http://localhost:3000/howdy/show I get this error

但是当我转到http://localhost:3000/howdy/show时,我得到了这个错误

HTTP request path is empty

HTTP请求路径为空

I am totally new to Net::HTTP and just trying to create something simple that works!

我对Net是全新的::HTTP,并尝试创建一些简单的东西来工作!

2 个解决方案

#1


3  

I would have used this instead in my controller:

我会在我的控制器中使用这个

@resp = Net::HTTP.get_response("www.google.com","/")

#2


3  

To send a request using net/http do:

使用net/http do发送请求:

        uri = URI.parse("http://www.google.com")
        http = Net::HTTP.new(uri.host, uri.port)
        request = Net::HTTP::Get.new(uri.request_uri)
        #This makes the request
        resp = http.request(request)

推荐阅读
author-avatar
小呗羽_331
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有