我从 HTTP 页面得到这个结果,例如:
<!DOCTYPE html>
<html>
<head>
<title>Captchaservice</title>
</head>
<body>
15
</body>
</html>
我使用这个 Nokogiri 代码:
doc = Nokogiri::HTML( response )
id = doc.xpath('//').text
但我得到\n 15 \n
等。
我试着写:
id = doc.xpath('//').text.to_i
我得到了这个值,但是当我使用这个 ID 时,我得到:
undefined method `empty?' for 15:Fixnum
我做错了什么,如何获得这个整数值?