文件名称:json-rpc-example:Go 中使用 Gorilla 的基于 HTTP 服务器的 JSON-RPC 示例
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-19 15:06:25
Go
json-rpc-example Go 中使用 Gorilla 的基于 HTTP 服务器的 JSON-RPC 示例。 这是一个精简的示例,展示了如何将 Gorilla JSON-RPC 与多路复用器和中间件结合使用。 用法 安装 go install github.com/bakins/json-rpc-example 启动服务器: json-rpc-example 使用 curl 进行 RPC 调用 curl -H "Content-Type: application/json" -d '{"method":"Arith.Divide","params":[{"A": 10, "B":2}], "id": 0}' http://localhost:8080/rpc {"id":0,"result":{"Quo":5,"Rem":0},"error":null} 还支持压
【文件预览】:
json-rpc-example-master
----LICENSE(11KB)
----main.go(1KB)
----.gitignore(266B)
----README.md(1KB)