フロントReactバックエンドRailsにて開発しております。
multipart/form-dataを用いてaxiosでactive storageに画像を投稿して保存はできたのですがgetにて取得する方法がわからないので質問させて頂きます。
articles_controller.rb
1def index 2 articles = Article.all 3 render json: articles 4end
Top.jsx
1const Top = () =>{ 2 const [articles, setArticles] = useState([]); 3 4 useEffect(() => { 5 const getArticles = async() => { 6 try { 7 const results = await json.get('/articles') 8 setArticles(results.data) 9 } catch (error) { 10 console.log(error) 11 } 12 } 13 getArticles() 14 }, []) 15 return( 16 <> 17 <Article articles = {articles} /> 18 </> 19 ) 20}
こちらのgetリクエストにてcnotrollerのindexで画像データを渡したいです。
どうか宜しくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。