Composer-playground 无法在 Firefox 中运行

Composer-playground not working in firefox

composer playground 网络应用在 Firefox 中无法正常运行。它给出

Error: Object with ID 'undefined' in collection with ID 'chaincodes' does not exist

在 Firefox 中,但它在 chrome 中完美运行。有什么想法吗?

我在本地遇到了同样的问题,所以建议的解决方案是删除您的 cookie 和浏览器存储。如果您在本地使用它,请删除 localhost

的 cookie

我遇到了这个问题,我使用以下命令解决了这个问题

  1. 首先停止 Fabrics,然后转到其开发文件夹进行 composer

    $cd fabric-dev-servers
    

    然后

    $ ./stopFabric.sh
    
    $ pkill composer-playground
    
  2. 删除 .composer 文件夹

    $ rm -rf ~/.composer
    
  3. 运行以下命令

    fabric-dev-servers/teardownFabric.sh

之后重新运行 ./startFabrics.shcomposer-playground 命令,一切正常。