文件名称:json-rpc-response:JSON RPC 2.0 响应对象构造函数
文件大小:4KB
文件格式:ZIP
更新时间:2024-08-05 16:15:35
JavaScript
JSON RPC 2.0 响应 构造函数。 另请参阅相关包 、 和 安装 npm install json - rpc - response 用法 new JsonRpcResponse ( id , error , result ) ; 可以使用或不使用new关键字来构造响应对象。 参数error和result是互斥的。 如果传递error则参数result必须是未定义的。 如果result存在,则将null作为错误传递。 例子 var JsonRpcResponse = require ( 'json-rpc-response' ) ; // Result response new JsonRpcResponse ( 1 , null , 'some result' ) ; // Error response new JsonRpcResponse ( 1 , { code
【文件预览】:
json-rpc-response-master
----index.js(893B)
----package.json(760B)
----test()
--------json-rpc-response.js(3KB)
----LICENSE(1KB)
----.gitignore(18B)
----README.md(1000B)