1

我在 glitch.me 上创建了一个服务器,我正在尝试从服务器提供数据,但出现以下错误。localhost/:1从源“ http://localhost:3000 ”获取“ https://clem-quote-server.glitch.me/quotes ”的访问权限已被 CORS 策略阻止:

请求的资源上不存在“Access-Control-Allow-Origin”标头。如果不透明的响应满足您的需求,请将请求的模式设置为“no-cors”以获取禁用 CORS 的资源。

不太确定如何解决这个问题

import React, {Component} from "react"

class quotes extends Component {
    constructor(props) {
        super(props);
        this.state = {
            error: null,
            isLoaded: false,
            quotes: quotes
        };
    }

componentDidMount() {
    fetch("https://clem-quote-server.glitch.me/quotes")
      .then(res => res.json())
      .then(
        (result) => {
            this.setState({
            isLoaded: true,
              quotes: result.quotes
          });
        },
        error => {
          this.setState({
            isLoaded: true,
            error
          });
        }
      );
}

    render() {
        const { error, isLoaded, quotes } = this.state;
        if (error) {
            return <div>Error: {error.message}</div>;
        } else if (!isLoaded) {
            return <div>Loading...</div>;
        } else {
            return (
              <ul>
                {quotes.map(quote => {
                    return quote;

                }  
                )}
              </ul>
            );
        }
    }
}       
    export default quotes;

我希望能够在每次页面加载时从数组列表中显示一个对象

4

1 回答 1

0

它失败是因为 CORS,当服务器和客户端处理不同的域时必须包含它。

CORS 包含在标题中。

以下是您在 React 应用程序中启用 corse 的方法:

https://facebook.github.io/create-react-app/docs/proxying-api-requests-in-development

CORS 信息:

https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

于 2019-05-14T17:18:15.333 回答