0

反応アプリから以下のコードを実行すると、ネットワークエラー、特に NS_BINDING_ABORTED と同じエラーが発生し続けます。他の API を試してみて、API を正常に呼び出す別のプロジェクトもあるからです。

import React, {useState} from 'react';


function App() {
  const [userTickerValue, setUserTickerValue] = useState('')
  
  const handleChangeTickerInput = (event) => {
    setUserTickerValue(event.target.value)
  }
  
  const key=(taken out for privacy)
  

  const handleFormSubmit = () => {
    console.log(userTickerValue)
      fetch(`https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&symbol=${userTickerValue}&apikey=${key}`)
      .then(res => res.json())
      .then(data => {
          console.log(data)
      })
  }
  
  return (
    <div className="App">
      <form onSubmit={handleFormSubmit}>
        <p>Ticker?<input type='text' value={userTickerValue} onChange={handleChangeTickerInput}></input></p>
      </form>
    </div>
  );
}

export default App;

4

0 に答える 0