Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
JavaScript Local Storage Implementation Using Anonymous Functions
WhatsApp
Gopal C. Bala
5y
7.2
k
0
1
25
Blog
Introduction
The local storage property of JavaScript allows us to access the local storage object. It is similar to the session storage but the only difference is that the local storage has no expiration time.
Core Implementation procedure
The following code snippet accesses the current domain’s local storage object and adds a data item to it using Storage.setItem().
localStorage.setItem(
'ObjectName'
,
'ObjectValue'
);
Our full JavaScript anonymous function will be as in the following code snippet:
var Demo = function() {
var sendRequest = function(o) {
$.ajax({
type:
"POST"
,
url:
'/Home/GetResponseAjax'
,
contentType:
"application/json; charset=utf-8"
,
dataType:
"json"
,
data: JSON.stringify({ university: o }),
cache:
false
,
beforeSend: function () {},
success: function (result) {
if
(result) {
alert(
'sent'
);
}
},
complete: function () {},
async:
true
});
}
var getResponse = function () {
$.ajax({
type:
"POST"
,
url:
'/Home/SendUniversityInfoAjax'
,
contentType:
"application/json; charset=utf-8"
,
dataType:
"json"
,
data: JSON.stringify({}),
cache:
false
,
beforeSend: function () { },
success: function (result) {
if
(result !=
null
) {
localStorage.setItem(
'Info'
, JSON.stringify(result));
alert(
'received and saved to local storage'
);
}
},
complete: function () { },
async:
true
});
}
var actionHandler = function () {
$(
'.get-response'
).unbind(
'click'
).on(
'click'
, function () {
debugger;
getResponse();
});
$(
'.read-data'
).unbind(
'click'
).on(
'click'
, function () {
debugger;
var info = JSON.parse(localStorage.getItem(
'Info'
));
var o = {};
o.Name = info[0].Name;
o.Location = info[0].Location;
o.NumberofTeachers = info[0].NumberofTeachers;
o.NumberofStudents = info[0].NumberofStudents;
sendRequest(o);
});
}
var initialize = function () {
actionHandler();
}
return
{
init: function () {
initialize();
}
};
}();
And the two Action methods will be the following:
public
ActionResult SendUniversityInfoAjax()
{
var info =
new
University
{
Name =
"Jahangirnagar University"
,
Location =
"Dhaka"
,
NumberofTeachers = 2000,
NumberofStudents = 15000
};
var infoList =
new
List<University> {info};
return
Json(infoList, JsonRequestBehavior.AllowGet);
}
public
ActionResult GetResponseAjax(University university)
{
var flag = university !=
null
;
return
Json(flag, JsonRequestBehavior.AllowGet);
}
Debugging output
GitHub
link
.
People also reading
Membership not found