如何将API网关SDK添加到React



我正在尝试将API网关SDK添加到React代码中,但我是ES6和React的新手,所以很难找到

这是我的React项目结构:

myReactProject
- node_modules
- src
-- components
---- ApigClient
------ lib (AWS APIGateway JS files) 
------ apigClient.js
------ ApigValidation.js
---- otherComponents..
---- index.js
-- containers
---- App
------ App.js
------ App.scss
---- Home
------ Home.js
------ Home.scss
---- OtherContainerFiles
---- index.js
-- redux
-- utils
---- validation.js
-- client.js
-- config.js
-- routes.js
-- server.js

我试图通过两种方式导入API网关SDK:

1)

import ApigClient from './ApigClient';
import apiGatewayClient from './lib/apiGatewayCore/apiGatewayClient'
import sigV4ClientConfig from './lib/apiGatewayCore/sigV4ClientConfig'
import simpleHttpClientConfig from './lib/apiGatewayCore/simpleHttpClientConfig'
import utils from './lib/apiGatewayCore/utils'
import enc-base64 from './lib/CryptoJS/component/enc-base64'
import hmac from './lib/CryptoJS/component/hmac'
import hmac-sha256 from './lib/CryptoJS/rollups/hmac-sha256'
import sha256 from './lib/CryptoJS/rollups/sha256'
import axios from './lib/axios/dist/axios.standalone'
import url-template from './lib/url-template/url-template'

2)

class ApigValidation extends Component {
  render() {
    return (
      <div>
        <h1>Hello</h1>
        <script type="text/javascript" src="./lib/axios/dist/axios.standalone.js"></script>
        <script type="text/javascript" src="./lib/CryptoJS/rollups/hmac-sha256.js"></script>
        <script type="text/javascript" src="./lib/CryptoJS/rollups/sha256.js"></script>
        <script type="text/javascript" src="./lib/CryptoJS/components/hmac.js"></script>
        <script type="text/javascript" src="./lib/CryptoJS/components/enc-base64.js"></script>
        <script type="text/javascript" src="./lib/url-template/url-template.js"></script>
        <script type="text/javascript" src="./lib/apiGatewayCore/sigV4Client.js"></script>
        <script type="text/javascript" src="./lib/apiGatewayCore/apiGatewayClient.js"></script>
        <script type="text/javascript" src="./lib/apiGatewayCore/simpleHttpClient.js"></script>
        <script type="text/javascript" src="./lib/apiGatewayCore/utils.js"></script>
        <script type="text/javascript" src="apigClient.js"></script>
        <script type="text/javascript">
          var apigClient = apigCleint.newClient({
            apiKey: 'This-is-my-api-key'
          });
          apigClient.myFuncGet(params, null)
            .then(function(response) {
              console.log(JSON.stringify(response));
            }).catch(function(resuponse) {
              console.log(JSON.stringify(response));
            });
        </script>
      </div>
    );
  }
}

1) 文件夹结构正确吗?我应该在Utils中放入SDK吗?

2) 如何在react中导入/加载/添加JS SDK并启用get/post功能?

请奉劝,衷心感谢!

React不会就如何获取http/async数据或如何构建项目做出任何决定。因此,就"正确"的方式而言,有许多。看看Redux,了解Flux的流行和众所周知的实现/变体。

一般来说,您可以做两件事中的一件,将SDK或任何类型的外部代码导入React应用程序。

  1. 使用bundler:Webpack、rollup.js、browserfy或其他工具将以这样一种方式输出代码,即您需要的SDK可以从需要的模块访问。

  2. 将其包含在脚本标记中:如果您在浏览器中运行所有内容,并且出于任何原因不想捆绑所有内容,则需要在React之前将该文件包含在HTML中,这样您就可以访问从SDK中暴露的全局模块。

例如:

<script src="copy_of_sdk_from_CDN"></script>
<script src="copy_of_react_from_CDN"></script>
<script src="other_app_code"></script>
<script src="other_app_code"></script>

如果您没有使用webpack或其他bundler,您只需要执行。这些捆绑器应该为您提供一个文件,根据您使用requireimport(如果您使用的是ES6模块)指定的依赖项,该文件以正确的顺序包含所有内容

这些几乎是将SDK"引入"项目的唯一方法。你几乎可以从远程位置获取它,也可以下载并以这种方式使用它(la npm)。

相关内容

  • 没有找到相关文章

最新更新