0

在调用 JSON-RPC 服务时,从 JavaScript 客户端生成唯一 ID 的最常见方法是什么?

修改后的问题:

通常,JavaScript JSON-RPC 客户端实现了一个计数id参数(例如,如果上一个请求是id=1,并且它没有收到响应,则下一个请求是id=2。如果请求id=1已经响应,则下一个请求可以id=1再次)。我有兴趣了解人们通常如何实现这一点。

4

1 回答 1

1

你没有描述这需要独一无二的宇宙。

如果您的意思是绝对唯一,那么您说的是UUID

如果您需要端点独有的东西来防止客户端缓存,那么这就足够了

var unique = new Date().getTime();

如果你需要这两个以外的东西,那么你需要更具体。

编辑

也许看起来有点像这样

jsonRpcClient = function()
{
  var requestStack = [null];

  this.makeRequest = function()
  {
    var id = this.getAvailableSlot();
    requestStack[id] = new this.request( id, arguments );
  }

  this.getAvailableSlot: function ()
  {
    for ( var i = 0; i < requestStack.length: i++ )
    {
      if ( null == this.requestStack[i] )
      {
        return i;
      }
    }
    return i;
  }

  this.request: function( id, args )
  {
    // request stuff here
    // pass id and whatever else to jsonRpcClient.handleResponse()
  }

  this.handleResponse: function( id )
  {
    var request = requestStack[id];
    requestStack[id] = null;

    // Do whatever with request
  }
};
于 2010-12-08T18:48:33.970 回答