0

我正在尝试从 html 站点中获取数据。但我现在这条线<span data-bind="data-title">Absolut Combat</span>存在。但是我的代码找不到它你们看到有什么问题吗?

public function index(Request $request) 
{
    $url = 'https://umod.org/plugins';
    $dom = new Dom;
    $html = $dom->loadFromUrl($url);
    $html = $html->find('span[data-bind="data-title"]'); <-- Problem is here
    dd($html);
    return view('server.rustplugins');
}
4

1 回答 1

0

我只是使用 json 而不是编写 html 抓取器。

于 2021-01-29T14:45:55.100 回答