0
は私axiosのURLアクションへのAPIからURLを渡す方法(ReactJS)
import Api from '../middleware/api'
export function IncomeList() {
return dispatch => {
return (
axios.post(Api.getURI(outline),{}, {
headers: { 'X-Authenticated-Userid': '[email protected]' }
}).then(function (response) {
console.log(response.data);
dispatch(receiveData(response.data.body));
})
.catch((error) => {
console.log(error);
})
)
}
}
にこれを渡してみAPIファイル
import { apiUrl } from '../config'
const baseUri = apiUrl
const uri = {
outline : '/course/income/outline'
}
const getURI = (key) => baseUri + uri[key]
module.exports = { apiMiddleware, get, post, put, ...{ delete: del }, uri, getURI }
を取得します。しかし、私はエラーが捕捉されないにReferenceErrorを得る:アウトラインが定義されていません。正しいURLを渡すには? getURI
方法にリテラル
спасибо!)работает –
@ЕгорКротенкоはここに英語を張りましょう:)そうでなければ、あなたは大歓迎です。 – Pavlo