json格式的Ajax提交示例代码_AJAX相关

需要加入:com.springsource.org.apache.commons.logging-1.1.1.jar、org.json.jar和jquery-1.10.0.min.js包

<form class="form-inline">
扫码: <input id="txtQRCode" type="text">
<button id="btnReceive">确定</button>
</form> 

<script type="text/javascript">
//扫描二维码
$('#btnReceive').click(function(){
$.ajax({
type:"GET",
url:"<%=basePath%>asynchronous/receive.do",
data:{qrCode:$('#txtQRCode').val()},
dataType:"json",
cache:false,
success:function(msg){
//var json = eval('('+msg+')');//拼接的json串 

var flag = msg.flag;
var info = msg.info;
if(flag){
alert(info);
$('#txtQRCode').val("");
}
else{
alert(info);
}
},
error:function(error){alert(error);}
});
});
});
</script> 

package com.utcsoft.pcapps.selfservice.controller;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.UnknownHostException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.json.JSONException;
import org.json.JSONObject;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; 

import com.utcsoft.common.attributes.YesNoEnum;
import com.utcsoft.common.util.DateOperate;
import com.utcsoft.pcapps.selfservice.attributes.KeyRequestAttr;
import com.utcsoft.pcapps.selfservice.dao.FlowDao;
import com.utcsoft.pcapps.selfservice.dao.KeyRequestDao;
import com.utcsoft.pcapps.selfservice.entity.Flow;
import com.utcsoft.pcapps.selfservice.entity.KeyRequest;
import com.utcsoft.pcapps.selfservice.entity.UtcUsers; 

@Controller
@RequestMapping(value = "/asynchronous")
public class AsynchronousController {
private final static Log logger = LogFactory.getLog(AsynchronousController.class); 

/**
* 扫描二维码 将订单改为UTC审核
* @param request
* @param response
* @throws IOException
* @throws JSONException
*/
@RequestMapping(value="/receive")
public void receive(HttpServletRequest request,HttpServletResponse response) throws IOException, JSONException{
String rets = "";
boolean b = false;
try{
String qrcode = request.getParameter("qrCode")==null?"":request.getParameter("qrCode").toString().trim();
logger.info(qrcode);
if(!"".equals(qrcode)){
JSONObject obj = new JSONObject(qrcode);
String orderid = obj.getString("orderid").trim();
if(!"".equals(orderid)){
KeyRequestDao keyDao = new KeyRequestDao();
KeyRequest k = new KeyRequest();//综合信息
k = keyDao.findOneByOrderId(orderid);
if(k!=null){
//修改订单状态为审核
int n = keyDao.updateState(orderid, String.valueOf(KeyRequestAttr.KqStateEnum.verify.getStep()));
Flow flow = new Flow();
FlowDao flowDao = new FlowDao();
UtcUsers users = (UtcUsers)request.getSession().getAttribute("utcUsers");
//将记录插入Flwo表中
flow.setKq_id(orderid);
flow.setKq_state(String.valueOf(KeyRequestAttr.KqStateEnum.cus_send.getStep()));
flow.setKq_state_to(String.valueOf(KeyRequestAttr.KqStateEnum.verify.getStep()));
flow.setIs_Pass(YesNoEnum.Y.getCode());
flow.setUser_id(users.getUser_id());
flow.setUser_id_from(users.getUser_id());
flow.setOpTimer(DateOperate.getDateTime());
int flowNum = flowDao.save(flow);
logger.info("扫描二维码提交结果:n="+n+";flowNum="+flowNum);
if(n>0){
b = true;
rets = "UTC接收订单成功";
logger.info("UTC接收订单成功");
}
else{
rets = "UTC接收订单失败";
logger.info("UTC接收订单失败");
}
}
else{
rets = "订单查询失败";
logger.info("订单查询失败");
}
}
else{
rets = "二维码中订单号为空";
logger.error("二维码中订单号为空");
}
}
else{
rets = "二维码内容为空";
logger.error("二维码内容为空");
} 

}
catch(Exception e){
e.printStackTrace();
rets = e.getMessage();
logger.error(e.getMessage());
} 

JSONObject ret = new JSONObject();
ret.put("flag", b);
ret.put("info", rets);
PrintWriter write = response.getWriter();
write.write(ret.toString());
write.flush();
}
}

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索ajax提交
JSON格式
ajax json 提交、ajax提交json格式数据、ajax提交json数组、ajax提交form表单json、ajax提交json数组对象,以便于您获取更多的相关知识。

时间: 2025-01-01 13:06:31

json格式的Ajax提交示例代码_AJAX相关的相关文章

Ajax请求内嵌套Ajax请求示例代码_AJAX相关

前段时间做项目,需要把全国省市的两个XML文件整合成一个JSON格式的数据,手写的话觉得数据太多了,而且容易出错,于是就想到了用Ajax嵌套的方法来解决,就想平时用Ajax的方法直接嵌套,都会先读出外面Ajax的内容,然后才读取嵌套在Ajax里面的内容,后面经网上查找资料,加个async:false这个Ajax参数就行了,下面是贴代码: <script type="text/javascript"> $(function () { $.ajax({ type: "

使用$.getJSON实现跨域ajax请求示例代码_AJAX相关

jQuery中常用getJSON来调用并获取远程的JSON字符串,将其转换为JSON对象,如果成功,则执行回调函数.原型如下: jQuery.getJSON( url, [data], [callback] ) 跨域加载JSON数据. url: 发送请求的地址 data : (可选) 待发送key/value参数 callback: (可选) 载入成功时的回调函数 主要用于客户端获取服务器JSON数据.简单示例: 服务器脚本,返回JSON数据: 复制代码 代码如下: // $.getJSON.p

iframe式ajax调用示例代码_AJAX相关

1.新建 a.html 复制代码 代码如下: <!doctype html> <html> <head> <meta charset='utf-8'> <title>iframe式ajax调用</title> </head> <body> <form action='b.php' method='post' name='' id='' target='formTarget'> <input t

Ajax叠加(Ajax返回数据用Ajax发出)示例代码_AJAX相关

最近在做人事管理系统的一个签到功能,首先是把部门当做参数,把参数用Ajax发送到数据库进行查询,然后以表格形式动态生成员工信息到返回页面的Div里,表格最后的一列是签到按钮,这时我想用JQuery继续获取被点击的"签到"按钮,然后用Ajax将数据发送到数据库签到表,更新签到表,于是我就把每个签到按钮的id属性设置成第一次Ajax返回的每个员工信息的工号,再次用JQuery获取,怎么获取呢?想到了标签加事件选择器,于是写了下面代码: 复制代码 代码如下: $(function(){ $(

js基本ajax写法示例代码_AJAX相关

复制代码 代码如下: var xmlhttp = null; function myajax() { //1.创建XMLHttpRequest对象 //2.需要针对IE和其它浏览器建立这个对象的不同方式写不同的代码 if (window.XMLHttpRequest) { //针对FF,Mozilar,Opera,Safari,IE7,IE8 xmlhttp = new XMLHttpRequest(); //修正某些浏览器bug if (xmlhttp.overrideMimeType) {

Ajax中通过JS代码自动获取表单元素值的示例代码_AJAX相关

我们在使用Ajax的时候,通常需要获取表单元素值,然后发送给后台的服务器端程序处理.如果表单元素不多的情况我们常常会通过GET方式来获取表单元素值,但如果表单元素非常多,此时就需要用POST方式来获取表单元素值,那么如何来获取表单元素值呢?下面给出一段JS代码即可自动获取表单元素的值了. function getFormQueryString(frmID) //frmID是表单的ID号,请在表单form中先命名一个ID号 { var frmID=document.getElementById(f

javascript Ajax 类实现代码_AJAX相关

与现在那些Ajax框架比较,优劣之处?看完再说吧: 1.Ajax.js 复制代码 代码如下: /*     AJAX v1.4     HJF 2009-7-5 */ function AjaxDO(){     this.HttpRequest = null;     this.openMethod = null; //HTTP请求的方法,为Get.Post 或者Head     this.openURL = null; //是目标URL.基于安全考虑,这个URL 只能是同网域的,否则会提示"

ajax提交整个from表单示例代码_AJAX相关

复制代码 代码如下: $.ajax( { type : "POST", url : "<%=request.getContextPath()%>/control/daControlAction_updateEmotecontrol.action", data : $("#form1").serialize(), dataType : "text", success : function(data) { if (da

ajax后台处理返回json值示例代码_AJAX相关

复制代码 代码如下: public ActionForward xsearch(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { String parentId = request.getParameter("parentId"); String supplier = request.getParamet