我有一个json字符串,我想在一个警告框中确认它,然后使用我的sqlserver将它发布到数据库中。你能帮帮我吗? 以下是我发送给服务器的ajax代码。 我需要在服务器端进行哪些编码才能将其发布到数据库中。
var a ={
Message:messagecreated,
Type:messageType
} ;
var jsonString=JSON.stringify(a) ;
if(confirm("Do you want to save this message? \n\n"+ jsonString))
{
$(function(){
$.ajax({
type: "POST",
url: "CreateMessage",
async:true,
cache:false,
data: jsonString,
contentType: "application/json",
success: function(response) {
alert(response);
},
error: function(e){
alert('Error: ' + e);
}