I am getting the response as mentioned below:
AFMomFormDetails now has {\"sigName\":\"qwer\",\"contName\":\"asdf\",\"signature\":\"zxcv\"}
after the move
var resStr = response;
var retStr = resStr.substring(resStr.indexOf("{"), resStr.indexOf("}")+1);
var strObj = retStr.replace(/\\/g, "");
$scope.fdetails=JSON.stringify(strObj);
I am unable to bind the values in angularjs. Can anyone please help me?