CEF - 在 std::string 中获取 html

CEF - Get html in std::string

有人可以为 CEF 推荐一个示例吗 - 如何加载 HTML 页面并将其放入 std::string?

我查看了CEF的文档,但不幸的是我不知道该怎么做。

这是您可以使用的函数:https://bitbucket.org/chromiumembedded/cef/src/7b0bb931b19cb192b1a0cb1838e639a4ad9fb6e3/include/cef_frame.h#lines-123

#include "include/cef_frame.h"

///
// Retrieve this frame's HTML source as a string sent to the specified
// visitor.
///
/*--cef()--*/
virtual void GetSource(CefRefPtr<CefStringVisitor> visitor) = 0;