在“使用CEF的JSON解析功能”中介绍了使用CefParseJson方法,与之对应的还有一个CefWriteJson方法,可以用来生成JSON串(或二进制),其函数原型如下:

// Generates a JSON string from the specified root |node| which should be a
// dictionary or list value. Returns an empty string on failure. This method
// requires exclusive access to |node| including any underlying data.
/*--cef()--*/
CefString CefWriteJSON(CefRefPtr<CefValue> node,
                       cef_json_writer_options_t options);

注意第一个参数是CefValue类型,在cef_values.h中定义,是CEF里的通用类型。当我们要调用CefWriteJSON时必须传入此类型的数据,假如你的JSON数据通过CefListValue或CefDictionaryValue来表示,就需要将它们设置到一个CefValue实例中再传递给CefWriteJSON。

下面是使用CefWriteJSON的一个简单示例:

void testWriteJson()
{
    CefRefPtr<CefDictionaryValue> pDict = CefDictionaryValue::Create();
    pDict->SetInt("id", 123);
    pDict->SetString("name", "ZhangSanFeng");

    CefRefPtr<CefValue> pValue = CefValue::Create();
    pValue->SetDictionary(pDict);
    std::string jsonString = CefWriteJSON(pValue, JSON_WRITER_DEFAULT);

    OutputDebugStringA(jsonString.c_str());
}

对应生成的JSON串如下:

{
    "id":123,
    "name":"ZhangSanFeng"
}

JSON数据可能是我们基于CEF开发富客户端程序时,在JS和C++之间通信最方便的格式了。以上面的数据为例,传递到JS上下文中,就可以用obj.id、obj.name之类的形式来访问。


就这样吧。

其他参考文章详见我的专栏:【CEF与PPAPI开发】。

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐