so i do get the same json from the web service (asp.net.4.5) 
on transformResponse.. 

so i could get to the controller the wrow json like 

<string 
xmlns="http://tempuri.org/";>{"weekContainerArr":[{"DaysContainer":[{"DayOfTheWeek":"4","ShabatTime":"","Date":"01/01/2014","Starts":"9:00","Ends":"16:58","Duration":"7:58","p100":"7:58","p125":"","p150":"","p175":"","
 
.... </string> 

and angular add 

if (isString(data)) {
        // strip json vulnerability protection prefix
        data = data.replace(PROTECTION_PREFIX, '');
        if (JSON_START.test(data) && JSON_END.test(data))
          data = fromJson(data);
      }
      return data;
    }" 


 

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to