2017-02-13 11 views
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" 

答えて

2

あなたはこのようなあなたの「グローバル」変数をエクスポートする必要があります。センスのおかげを作る

export const MAIN_URL="www.testexamplebeta.com" 
+0

ああ! – lost9123193

関連する問題