Scrubyt:在 query_field 中使用 big5 字符串作为 fill_textfield
有谁知道如何让 fill_textfield 接受 query_field 中的 big5 编码字符串?我不断收到“未终止的字符串遇到文件结尾”错误:
require 'rubygems'
require 'scrubyt'
search_data = Scrubyt::Extractor.define do
fetch 'http://www.google.com/ncr'
fill_textfield 'q', '你好世界'
submit
end
Does anyone know of a way to get fill_textfield to accept a big5-encoded string in the query_field? I keep getting an "unterminated string meets end of file" error with this:
require 'rubygems'
require 'scrubyt'
search_data = Scrubyt::Extractor.define do
fetch 'http://www.google.com/ncr'
fill_textfield 'q', '你好世界'
submit
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决:2 字节 big5 字符与结束字符串的“'”混淆。在中文后面加一个空格就可以了。
Solved: The 2-byte big5 character was messing with the " ' " closing the string. Add a space after the Chinese and it works.