CEF生成JSON数据

在“使用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开发】。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

foruok

你可以选择打赏

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值