使用原生ajax与后台数据交互

//html  非完整,只包含必要元素

 

   


//java  使用的是springMVC+Maven

import net.sf.json.JSONObject;

@Controller

public class RunTimeController {

@RequestMapping(value="/test",produces = "application/json;charset=utf-8",method=RequestMethod.GET)
@ResponseBody
public String test_001(String typecode){
JSONObject json = new JSONObject();
json.put("typecode", typecode);
return json.toString();
}

}

你可能感兴趣的:(ajax)