Answers for "typescript import variable from another file"

0

typescript import variable from another file

//in the first file backendUrls.ts or js
export const rooturl = 'http://127.0.0.1:8000';
export const cityListUrl = rooturl + '/api/city/'
export const all = {
    rooturl, cityListUrl
}

//in the component
import {Injectable} from '@angular/core';
import {Http} from '@angular/http';
import {backendUrls} from 'app/backendUrls'; //import the file with variables here

@Injectable()
export class cityGetService{
  constructor(private http: Http){}

  cityGet(){
    this.http.get(new backendUrls().cityListUrl) //use create new instance to use the variable
  }
}
Posted by: Guest on August-30-2021

Code answers related to "typescript import variable from another file"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language