2

フォームにログインするページがあります。ログイン後、いくつかのリダイレクトがあります。最初のものは次のようになります。

#<Mechanize::File:0x1f4ff23 @filename="MYL.html", @code="200", @response={"cache-control"=>"no-cache=\"set-cookie\"", "content-length"=>"114", "set-cookie"=>"JSESSIONID=GdJnPVnhtN91KZfQPc3QzM1NLCyWDsnyvpGg8LL0Knnz3RgqxLFs!1803804592!-2134626567; path=/; secure, COOKIE_TEST=Aslyn; secure", "x-powered-by"=>"Servlet/2.4 JSP/2.0"}, @body="\r\n<html>\r\n  <head>\r\n    <meta http-equiv=\"refresh\" content=\"0;URL=MYL?Select=OK&StateName=38\">\r\n  </head>\r\n</html>", @uri=#<URI::HTTPS:0x16e1eff URL:https://www.manageyourloans.com/MYL?StateName=global_CALMLandingPage&GUID=D1704621-1994-E076-460A-10B2B682B960>>

したがって、ここでpage.classを実行すると、次のようになります。

Mechanize::File

どうすればそれをに変換できMechanize::Pageますか?


@pguardiario

説明をわかりやすくするために、元のメッセージのコードはページに保存されています。

page.classを実行すると、Mechanize::Fileが表示されます

それで、私は上記のあなたのコードを実行します:

agent = Mechanize.new
agent.post_connect_hooks << lambda {|http| http[:response].content_type = 'text/html'}

だから私はこれを行います:agent.get(page.uri.to_s)または任意のURLでのイベント試行agent.get( " https://www.manageyourloans.com/MYL ")エラーが発生します:ArgumentError:引数の数が間違っています(1対4)

私もこれを試しました:

agent = Mechanize.new { |a|
  a.post_connect_hooks << lambda { |_,_,response,_|
    if response.content_type.nil? || response.content_type.empty?
      response.content_type = 'text/html'
    end
  }
}

私の質問は、これを実行したら、前のページをMechanize :: Pageに変換するにはどうすればよいですか?

4

2 に答える 2

3

ファイルオブジェクトに含まれる本文を新しいページの本文として渡すことで、Mechanize::File から Mechanize::Page に変換できます。

irb(main):001:0> require 'mechanize'
true
irb(main):002:0> file = Mechanize::File.new(URI.parse('http://foo.com'),nil,File.read('foo.html'))
#<Mechanize::File:0x100ef0190
    @full_path = false,
    attr_accessor :body = "<html><body>foo</body></html>\n",
    attr_accessor :code = nil,
    attr_accessor :filename = "index.html",
    attr_accessor :response = {},
    attr_accessor :uri = #<URI::HTTP:0x100ef02d0
        attr_accessor :fragment = nil,
        attr_accessor :host = "foo.com",
        attr_accessor :opaque = nil,
        attr_accessor :password = nil,
        attr_accessor :path = "",
        attr_accessor :port = 80,
        attr_accessor :query = nil,
        attr_accessor :registry = nil,
        attr_accessor :scheme = "http",
        attr_accessor :user = nil,
        attr_reader :parser = nil
    >
>

最初に、コード例に従うためだけに偽の Mechanize::File オブジェクトを作成しました。読み込まれたファイルの内容は、:body.

Mechanize は、真の content-type が何であるかを判断できない場合、Mechanize::File オブジェクトを作成します。

irb(main):003:0> page = Mechanize::Page.new(URI.parse('http://foo.com'),nil,file.body)
#<Mechanize::Page:0x100ed5e30
    @full_path = false,
    @meta_content_type = nil,
    attr_accessor :body = "<html><body>foo</body></html>\n",
    attr_accessor :code = nil,
    attr_accessor :encoding = nil,
    attr_accessor :filename = "index.html",
    attr_accessor :mech = nil,
    attr_accessor :response = {
        "content-type" => "text/html"
    },
    attr_accessor :uri = #<URI::HTTP:0x100ed5ed0
        attr_accessor :fragment = nil,
        attr_accessor :host = "foo.com",
        attr_accessor :opaque = nil,
        attr_accessor :password = nil,
        attr_accessor :path = "",
        attr_accessor :port = 80,
        attr_accessor :query = nil,
        attr_accessor :registry = nil,
        attr_accessor :scheme = "http",
        attr_accessor :user = nil,
        attr_reader :parser = nil
    >,
    attr_reader :bases = nil,
    attr_reader :encodings = [
        [0] nil,
        [1] "US-ASCII"
    ],
    attr_reader :forms = nil,
    attr_reader :frames = nil,
    attr_reader :iframes = nil,
    attr_reader :labels = nil,
    attr_reader :labels_hash = nil,
    attr_reader :links = nil,
    attr_reader :meta_refresh = nil,
    attr_reader :parser = nil,
    attr_reader :title = nil
>
irb(main):004:0> page.class
Mechanize::Page < Mechanize::File

ファイル オブジェクトの本体を渡すだけで、Mechanize が本来あるべき姿に変換します。

于 2012-04-23T21:58:44.783 に答える
0

私は@The Tin Manの答えが好きですが、応答のコンテンツタイプを強制する方が簡単かもしれません:

agent.post_connect_hooks << lambda {|http| http[:response].content_type = 'text/html'}
于 2012-04-24T04:04:43.977 に答える