Splash API/lua error: attempt to index local element (a nil value)
Splash API/lua error: attempt to index local element (a nil value)
我正在编写一个 lua 脚本,我想将其与网站的 scrapy + splash 一起使用。我想写一个输入文本然后点击按钮的脚本。我有以下代码:
function main(splash)
local url = splash.args.url
assert(splash:go(url))
assert(splash:wait(5))
local element = splash:select('.input_29SQWm')
assert(element:send_text("Wall Street, New York"))
assert(splash:send_keys("<Return>"))
assert(splash:wait(5))
return {
html = splash:html(),
}
end
现在我正在使用启动画面 API 来测试我的代码是否正常运行。当我单击 "Render!" 时,我收到以下消息:
{
"info": {
"message": "Lua error: [string \"function main(splash)\r...\"]:7: attempt to index local 'element' (a nil value)",
"type": "LUA_ERROR",
"error": "attempt to index local 'element' (a nil value)",
"source": "[string \"function main(splash)\r...\"]",
"line_number": 7
},
"error": 400,
"type": "ScriptError",
"description": "Error happened while executing Lua script"
}
因此,由于某种原因,当我尝试发送 "Wall street, New York" 时,元素仍然为零。我不明白为什么;如果我在 chrome 控制台中输入以下内容:
$('.input_29SQWm')
我找到了想要的元素!
问:有谁知道我做错了什么?
提前致谢!
正如错误消息告诉您的那样,您尝试索引本地 'element',它是 nil。
错误出现在第7行:assert(element:send_text("Wall Street, New York"))
那为什么是nil
?在第 6 行中,我们为 element
赋值
local element = splash:select('.input_29SQWm')
很明显splash:select('.input_29SQWm')
returns nil
让我们看看文档:
http://splash.readthedocs.io/en/stable/scripting-ref.html#splash-select
If the element cannot be found using the specified selector nil will
be returned. If your selector is not a valid CSS selector an error
will be raised.
你的错误是没有处理 select 可能 return nil
的情况。您不能盲目索引可能为 nil
的值。
此外,在调用引发错误的函数时,您应该使用受保护的调用。
现在由您来找出为什么 select 没有找到使用 selector.
的元素
我建议您在继续之前阅读 Lua 中有关错误处理的内容。
我正在编写一个 lua 脚本,我想将其与网站的 scrapy + splash 一起使用。我想写一个输入文本然后点击按钮的脚本。我有以下代码:
function main(splash)
local url = splash.args.url
assert(splash:go(url))
assert(splash:wait(5))
local element = splash:select('.input_29SQWm')
assert(element:send_text("Wall Street, New York"))
assert(splash:send_keys("<Return>"))
assert(splash:wait(5))
return {
html = splash:html(),
}
end
现在我正在使用启动画面 API 来测试我的代码是否正常运行。当我单击 "Render!" 时,我收到以下消息:
{
"info": {
"message": "Lua error: [string \"function main(splash)\r...\"]:7: attempt to index local 'element' (a nil value)",
"type": "LUA_ERROR",
"error": "attempt to index local 'element' (a nil value)",
"source": "[string \"function main(splash)\r...\"]",
"line_number": 7
},
"error": 400,
"type": "ScriptError",
"description": "Error happened while executing Lua script"
}
因此,由于某种原因,当我尝试发送 "Wall street, New York" 时,元素仍然为零。我不明白为什么;如果我在 chrome 控制台中输入以下内容:
$('.input_29SQWm')
我找到了想要的元素!
问:有谁知道我做错了什么?
提前致谢!
正如错误消息告诉您的那样,您尝试索引本地 'element',它是 nil。
错误出现在第7行:assert(element:send_text("Wall Street, New York"))
那为什么是nil
?在第 6 行中,我们为 element
local element = splash:select('.input_29SQWm')
很明显splash:select('.input_29SQWm')
returns nil
让我们看看文档:
http://splash.readthedocs.io/en/stable/scripting-ref.html#splash-select
If the element cannot be found using the specified selector nil will be returned. If your selector is not a valid CSS selector an error will be raised.
你的错误是没有处理 select 可能 return nil
的情况。您不能盲目索引可能为 nil
的值。
此外,在调用引发错误的函数时,您应该使用受保护的调用。
现在由您来找出为什么 select 没有找到使用 selector.
的元素我建议您在继续之前阅读 Lua 中有关错误处理的内容。