rest_rpc icon indicating copy to clipboard operation
rest_rpc copied to clipboard

是否支持引用方式传参?

Open shfxxer opened this issue 5 months ago • 1 comments

类似如下:

//client std::string info client.call("get_info",info) //info 内容为"hello",并且正常返回info.len

//server int get_info(std::string & info) { info = "hello"; return info.length(); }

非常感谢!

shfxxer avatar Sep 20 '24 08:09 shfxxer