Skip to main content

Localization in angular4 by fetching data from server using VS2017

Localization in angular4 by fetching data from server using VS2017

Localization  in angular4 by fetching data from server using VS2017




1,This is my webapi controller from where the data for localization is fetched


//This is our webApi COntroller
 // GET: api/local/5
   [HttpGet, Route("api/local/{name}")]
        public IDictionary Get(string name)
        {
           
                Dictionary dict = new Dictionary();
                dict.Add("user01", "Nombre");//Name
                dict.Add("user02", "Nombre del Padre");//Father Name
                dict.Add("user03", "Direccion postal");//Postal Address
                return dict.ToDictionary(p => p.Key, p => p.Value);

        }


2,In our template url file, we will be giving the key of the dictionary object and covering it with a function which will fetch the value from the key  from the component


                    {{name("user01")}}
   


3,In our component  we have to write a get method to fetch the localization values from webapi controller



My Component.ts





//localisation-Json result from the service is passed to a html localstorage where our value is stored
and is used by our html page
        this.dataService.getlocal()
            .subscribe((item: any[]) => {
                if (item != null || item != undefined) {
                 
                    if (localStorage.getItem("localizationAray") != null) {
                        localStorage.removeItem("localizationAray");
                    }
                    localStorage.setItem("localizationAray", JSON.stringify(item));
                }
            });

    }

  //localization -This method is call from template url to get value fro  key . We will fetch value from the local storage in html5
    name(value: string) {
       
        var retVal = localStorage.getItem("localizationAray");
        var OrgVal = JSON.parse(retVal);
        if (OrgVal != null || OrgVal != undefined) {

            retVal = OrgVal[value];
        }

        return retVal;
    }



My Service.ts

//local- This service fetch dictionary value from webApi controller
    getlocal() {
        var retVal = localStorage.getItem("userlang").toString();
      //  return this.http.get('api/local/?name=${retVal}')
        //'"' + retVal + '"'
        return this.http.get('api/local/' + retVal )
            .map((res: Response) => res.json());
    }


Please free to comment under for any further clarification.



Comments

Popular posts from this blog

Gemini software Dot net interview question for experienced

Gemini Interview questions 4-8 year experienced Dot net professional Gemini Interview questions 4-8 year experienced Dot net professional 1,Asp .net mvc request life cycle. 2,How routing works 3,Where codes for routing are written 4,What is attribute based routing in aap.net Mvc 5,Is multiple routes possible on a single action method. 6,What is action filters. 7,what is authentication and authorization filters 8,What are the types of authentication 8,What is the use of data annotation 9,Can we fire data annotation in client side. 10,What is model binding 11,what are Html helpers

15 Essential jQuery Interview Questions

15 Essential jQuery Interview Questions 15 Essential jQuery Interview Questions 1,Explain what the following code will do: $( "div#first, div.first, ol#items > [name$='first']" ) Ans:This code performs a query to retrieve any element with the id first, plus all elements with the class first, plus all elements which are children of the element and whose name attribute ends with the string "first". This is an example of using multiple selectors at once. The function will return a jQuery object containing the results of the query. 2,What is wrong with this code, and how can it be fixed to work properly even with buttons that are added later dynamically? // define the click handler for all buttons $( "button" ).bind( "click", function() {     alert( "Button Clicked!" ) }); /* ... some time later ... */ // dynamically add another button to the page $( "html" ).append( " Click...

Angular 4 Interview questions

Angular 4 Interview questions experienced Angular 4 Interview questions Animations Questions: How do you define transition between two states in Angular? How do you define a wildcard state? Architecture Questions: What is a good use case for ngrx/store? Can you talk about a bug related to a race condition, how to solve it and how to test it? API Questions: What does this code do: @ HostBinding ( ' class.valid ' ) isValid ; < div * ngIf = ' someObservableData | async as data; else loading ' >{{data}}</ div > < ng-template # loading > Loading Data... </ ng-template > Why would you use renderer methods instead of using native element methods? What is the point of calling renderer.invokeElementMethod(rendererEl, methodName)? How would you control size of an element on resize of the window in a component? What would be a good use for NgZone service? How would you protect a component being activated throu...