postgreSQL-(1)インストールエラー(無限ロード)


PostgreSQLは、拡張性と標準的なコンプライアンスを強調するオブジェクト-リレーショナル・データベース管理システムです.BSDライセンスの配布として、オープンソース開発者と関連会社が開発に参加しています.

バックエンド路線図に従ってSQL DBのいずれかのPostgreDBを選択して処理しようとしたところ、すぐにエラーが発生しました.
https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
ここで、オペレーティングシステムに従ってダウンロードが完了した後も、pgadmin 4は開いておらず、無限にロードされている.

再インストール、サーバ、pgdmin分離インストールなどの挿入中に見つかった解決策は簡単すぎます.

レジストリエディタ>HKEY CLASSES ROOT.js > Content Type
ここでtext/plain->text/javascriptをコンテンツタイプのデータとする
成果を変えていいです.
https://www.pgadmin.org/faq/
Troubleshooting
When I launch pgAdmin 4 v4.28 or later on Windows, the loading page never closes. Why?
pgAdmin 4 v4.28 includes additional security features, one of which is intended to prevent security issues caused by Content Sniffing.
Unfortunately some Windows systems are mis-configured such that this causes Javascripts used by pgAdmin to fail to load. Opening the developer tools on your browser will show an error similar to this:
Refused to execute script from
'http://127.0.0.1:57313/static/vendor/require/require.min.js?ver=42800'
because its MIME type ('text/plain') is not executable, and strict MIME type
checking is enabled.

(index):39 Uncaught ReferenceError: require is not defined at (index):39
This will occur when the value of the registry key at HKEY_CLASSES_ROOT.js\Content Type is set to text/plain. To resolve the issue, use the Registry Editor and reset the value of HKEY_CLASSES_ROOT.js\Content Type to:
こうして公式FAQで答えを見つけた.