Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/66.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
rvest::set_values()返回错误_R_Rvest - Fatal编程技术网

rvest::set_values()返回错误

rvest::set_values()返回错误,r,rvest,R,Rvest,我正在尝试使用set_values()函数使用此网站插入公司名称: 不幸的是 search <- html_form(read_html("https://www.unternehmensregister.de/ureg/search1.4.html"))[[1]] 给出了一个错误 错误 设置_值(搜索,搜索注册表执行:companyPublicationsCompanyName- :对象“SearchRegister执行:companyPublicationsCompanyName”

我正在尝试使用
set_values()
函数使用此网站插入公司名称:

不幸的是

search <- html_form(read_html("https://www.unternehmensregister.de/ureg/search1.4.html"))[[1]]
给出了一个错误

错误 设置_值(搜索,搜索注册表执行:companyPublicationsCompanyName- :对象“SearchRegister执行:companyPublicationsCompanyName”不是 发现


如果有人能帮我解决这个问题,那就太好了!

设置值中出现错误(搜索,搜索注册表执行:companyPublicationsCompanyName-:object'SearchRegister执行:companyPublicationsCompanyName'未找到您需要使用引号,因为您的lhs不是有效的R名称。此外,
-
应该是
=
设置值(搜索,“SearchRegisterPerform:companyPublicationsCompanyName”=“Daimler”)
非常感谢您的帮助!现在一切都好了。
set_values(search, searchRegisterForm:companyPublicationsCompanyName - "Daimler")