Hello,

I exctracted all url from page via

my @a = $body->find("a[href]")->each; # $body = Mojo::DOM object
 for (@a) {
  say $_->attr("href");
 }

And for 
<a href="userfiles.php?userId=6211">
result is:
http://<domain_name>/userfiles.php

Why is it cut ?userId=6211 and how to get it?

-- 
You received this message because you are subscribed to the Google Groups 
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.

Reply via email to