o matching function for call to ‘std::__cxx11::wstring_convert<std::codecvt_utf8_utf16<wchar_t> >::to_bytes(std::__cxx11::string&)’ std::string utf8_string = converter.to_bytes(datas);
时间: 2023-09-14 20:07:30 浏览: 219
utf8与string的相互转换
4星 · 用户满意度95%
这个错误的原因可能是你传递给 `to_bytes` 函数的参数类型不正确。`to_bytes` 函数需要一个 `std::wstring` 类型的参数,但是你传递了一个 `std::string` 类型的参数。你可以尝试将参数转换为正确的类型,或者使用适当的函数来正确地转换字符串类型。你可以检查一下你的代码,看看是否有这样的错误。
阅读全文