0
私はAPI URLを取得し、それをaction.jsファイルに追加するグローバル変数を持っています。Javascript/Reactで別のファイルからグローバル文字列を呼び出す
mainUrl.js私は未定義の取得MAIN_URLをCONSOLE.LOG
import {MAIN_URL} from '../mainUrl'
export function fetchPets() {
return function(dispatch) {
console.log("THE URL IS", MAIN_URL)
axios.get(`${MAIN_URL}/tests`)
.then(response => {
dispatch({
type: FETCH_TESTS,
payload: response
});
})
.catch(() => {
console.log("Can't fetch the test examples");
});
}
}
action.js
const MAIN_URL="www.testexamplebeta.com"
。
ああ! – lost9123193