TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bobi B
1.3k
476
11.5k
pls any one help to reload the page
Nov 7 2018 4:21 AM
Hello genius,
angular
.module('WFM')
.controller('ResetPasswordCtl', ResetPasswordCtl)
function ResetPasswordCtl($scope,$location,$templateCache,$window,wfmFactData,toaster){
$templateCache.removeAll();
$scope.new_pwd = "";
$scope.conf_pwd = "";
Load_ResetPwd();
function Load_ResetPwd() {
debugger;
var refcode = $location.search()['EmpCode'];
if (refcode != undefined) {
if ($location.path() == "/ResetPwd") {
var emp_code = $location.search()['EmpCode'];
var url = 'wfm/getLoginInfo_Mail?emp_guid=' + emp_code;
wfmFactData.getServiceData(url)
.success(function (data) {
if (data.ErrorMessage == null) {
$window.sessionStorage.session_userInfo = JSON.stringify(data);
$scope.IsErrorMessage = "false";
$window.sessionStorage["IsReset"] ="RESET";
$location.path("/ResetPwd");
$location.search('EmpCode', null);
} else {
$scope.ErrorMessage = data.ErrorMessage;
$scope.IsErrorMessage = "true";
}
})
.error(function (error) {
var status = 'Unable to load Service data: ' + error.message;
console.log(status);
});
}
else {
$scope.image_url = "images/user.png";
$scope.user_name = "";
$scope.email = "";
$scope.lastlogin = "";
// $location.path("/");
}
}
$location.path("/ResetPwd");
}
}
above is my code , once i open the page,the page not displaying the data, but when i refresh its displaying, i dont donna how to reload the page pls any one help
Reply
Answers (
1
)
Error when i create new project
Error while implemented routing in project