为了账号安全,请及时绑定邮箱和手机立即绑定

如何在模块导出 ReactJs 上导出 Axios 响应

如何在模块导出 ReactJs 上导出 Axios 响应

白衣染霜花 2023-08-18 09:56:30
我需要在 module.exports 上导出 axios 响应的结果。这是我的代码:品牌.jsvar axios = require('axios');module.exports = (async function() {    try {        const { data } = axios.get('http://localhost:8000/api/v1/setting/index');        console.log(data.data.initial);        return {            name: data.data.name,            desc: data.data.description,          };          } catch (err) {        console.log(err);      }      })();我尝试导入结果以用于另一个文件。这是我的代码。import React from 'react';const {brand} = await require("brand.js");  class Dashboard extends Component {       render(){        const name = brand.name        const desc = brand.description;        return (        <h1>{title} | {description}</h1>        );            }}  我的代码的结果是:Can not use keyword 'await' outside an async function这是浏览器上显示的错误:怎么解决这个问题呢?
查看完整描述

1 回答

?
holdtom

TA贡献1805条经验 获得超10个赞

你可以这样做。


// brand.js


import axios from 'axios';


export const fetchData = async () => {

  let response;


  try {

    response = await axios.get(url, config);

  } catch (e) {

    // catch error

    throw new Error(e.message)

  }


  // if success return value

  return response?.data ? response?.data : null // or set initial value

}


然后在你的 React 中


import { fetchData } from './path/to/fetchData';


const response = fetchData();


const MyComponent = (props) => {

  return (

    <div>name: {response.data.name} | desc: {response.data.description}</div>

  )

}


查看完整回答
反对 回复 2023-08-18
  • 1 回答
  • 0 关注
  • 115 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信