Composer-playground not working in firefox

拜拜、爱过 提交于 2019-12-11 01:57:38

问题


The composer playground web app doesn't work correctly in Firefox. It gives

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

in Firefox, but it works perfectly in chrome. Any ideas?


回答1:


I've got the same problem locally, so the solution as suggested is to delete your cookies and browser storage. If you use this locally delete the cookies for localhost




回答2:


I was having this problem which I solved by using the following commands

  1. First stop the Fabrics and then composer by going to its development folder

    $cd fabric-dev-servers
    

    and then

    $ ./stopFabric.sh
    
    $ pkill composer-playground
    
  2. Remove the .composer folder

    $ rm -rf ~/.composer
    
  3. run the following command

    fabric-dev-servers/teardownFabric.sh

Afterwards re-run the ./startFabrics.sh and composer-playground commands, everything will work fine.



来源:https://stackoverflow.com/questions/49708598/composer-playground-not-working-in-firefox

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!