JSON - How can I send null value?
Posted
by Kim Tranjan
on Stack Overflow
See other posts from Stack Overflow
or by Kim Tranjan
Published on 2010-05-21T02:41:23Z
Indexed on
2010/05/21
2:50 UTC
Read the original article
Hit count: 293
I want to do something like this
$.get('/Controller/Action/', { model : null }, function(data) {});
Unfortunatelly it doesn't work. In server side the value of the model is {object}
.
How do I get null
?
© Stack Overflow or respective owner