从html创建一个JSON数据,将其发送到servlet,然后发送到数据库

时间:2016-05-07 17:49:35

标签: mysql json database servlets

我有一个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);
    }

0 个答案:

没有答案