有没有一种方法可以从服务器返回 content-type="application/html"。
grpc-gateway 以键值对返回响应,浏览器无法解析它。
原型定义:
rpc Create (RegId) returns (Resp);
message RegId {
string id = 1;
}
message Resp {
string response = 1;
}
Returning response as HTML but in key-value pair.
我怎样才能返回html
{"response":"\u003chtml\u003e\u003cb\u003e Hey Developer \u003c/b\u003e\u003c/html\u003e"}