我是初学者,我必须解决正在进行的应用程序中的问题。后台工作,但今天不再工作。我可以控制doc Api平台的管理员,一切似乎还可以。当我在localhost中启动管理模式时,显示错误:无法检索API文档。 你能帮助我吗 ? 谢谢
App.js
import React from 'react';
import { HydraAdmin } from '@api-platform/admin';
require('dotenv').config();
export default () => <HydraAdmin entrypoint= {process.env.REACT_APP_API} />;`
nelmio_cors.yaml
nelmio_cors:
defaults:
origin_regex: true
allow_origin: ['*']
allow_methods: ['GET', 'OPTIONS', 'POST', 'PUT', 'PATCH', 'DELETE']
allow_headers: ['Content-Type', 'Authorization']
expose_headers: ['Content-Disposition', 'Content-Length', 'Link']
max_age: 3600
paths:
'^/': ~`
.env
######API ENV#######
REACT_APP_API=http://localhost:8080/