추천(무료) : ajax
최근 Ajax를 작성하고 백그라운드로 데이터를 전송할 때 문제가 발생했습니다. json 형태로 데이터를 백그라운드로 전송하고 백그라운드에서 맵 형태로 수신한 후 맵 형태로 데이터를 반환합니다. 그런데 프런트에서 계속 오류 메시지(*)(@415 지원되지 않는 미디어 유형)가 떴고, 안내사항을 참고한 끝에 해결했습니다. 다음은 ajax와 백그라운드 간에 데이터를 전송하는 여러 가지 방법을 요약한 것입니다. 위 문제에 대한 해결책은 이 기사의 끝에 있습니다.
<code> var id = $("#id").val(); $.ajax({ type: "POST", url: "/IFTree/people/getPeopleById/"+id,//参数放在url中 success:function(data){ alert(data); }, error:function(xhr, textStatus, errorThrown) { } }); </code>
<code></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">@RequestMapping(value = "getPeopleById/{id}") @ResponseBody public Map<String, Object> getPeopleById(@PathVariable("id") int id) { //@PathVariable("id") 如果参数名与url定义的一样注解可以不用定义("id") System.out.println(id); Map<String, Object> map = new HashMap<String, Object>(); return map; } }
<code> var id = $("#id").val(); $.ajax({ type: "POST", url: "/IFTree/people/getPeopleById", data: {id:id}, success:function(data){ alert(data.result); }, error:function(xhr, textStatus, errorThrown) { } }); </code>
<code></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">@RequestMapping(value = "getPeopleById") @ResponseBody public Map<String, Object> getPeopleById(HttpServletRequest request,HttpServletResponse response) { int id = Integer.valueOf(request.getParameter("id")); Map<String, Object> map = new HashMap<String, Object>(); return map; }
@RequestMapping(value = "getPeopleById") @ResponseBody public Map<String, Object> getPeopleById(HttpServletRequest request,HttpServletResponse response) { int id = Integer.valueOf(request.getParameter("id")); // 这里得到的都是字符串得转换成你需要的类型 Map<String, Object> map = new HashMap<String, Object>(); return map; }
3. json으로 전송(처음에 언급한 상황) js(몇 가지 일반적인 ajax 매개변수 설명 포함):
<code> var id = $("#id").val(); $.ajax({ type: "POST",//请求类型 timeout:10000, //设置请求超时时间(毫秒) async:ture,//是否为异步请求 cache:false,//是否从浏览器缓存中加载请求信息。 url: "/IFTree/people/getPeopleById", contentType: "application/json;charset=UTF-8",//提交的数据类型 data: JSON.stringify({id:id}),//这里是把json转化为字符串形式 dataType: "json",//返回的数据类型 success:function(data){ $("#name").val(data.result.name); }, error:function(xhr, textStatus, errorThrown) { } }); }); </code>
<code><p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">@RequestMapping(value = "getPeopleById", produces = "application/json") @ResponseBody public Map<String, Object> getPeopleById(@RequestBody Map<String, Object> body){ System.out.println(""+body.get("id")); People people = peopleService.getPeopleById(Integer.valueOf((String)body.get("id"))); Map<String, Object> map = new HashMap<String, Object>(); map.put("result", people); return map; }
이 주석은 먼저 요청 요청의 본문 데이터를 읽은 다음 기본 구성된 HttpMessageConverter를 사용하여 구문 분석하고 데이터를 개체에 바인딩한 다음 개체를 컨트롤러에 바인딩합니다. 의 매개변수에 대해
@ResponseBody
이 주석은 Controller 메서드에서 반환된 개체를 HttpMessageConverter를 통해 지정된 형식으로 변환한 후 Response 개체의 본문 데이터 영역에 쓰는 데에도 사용됩니다.
<p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"> <!-- spring MVC提供的适配器 spring默认加载 (如果不修改默认加载的4类转换器,该bean可不配置)-->
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<!-- 该适配器默认加载以下4类转换器-->
<list>
<bean class="org.springframework.http.converter.BufferedImageHttpMessageConverter" />
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter" />
<bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter" />
<bean class="org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter" />
<bean class="org.springframework.http.converter.StringHttpMessageConverter" />
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean><!--这里配置了json转换器支持的媒体类型-->
</list>
</property>
</bean></pre><div class="contentsignin">로그인 후 복사</div></div></p>
ByteArrayHttpMessageConverter: 바이너리 형식의 데이터를 읽고 바이너리 형식으로 데이터를 쓰는 일을 담당합니다. 문자열 형식의 데이터 읽기 및 바이너리 형식의 데이터 쓰기
ResourceHttpMessageConverter: 리소스 파일 읽기 및 리소스 파일 데이터 쓰기를 담당
FormHttpMessageConverter: 양식에서 제출된 데이터 읽기를 담당
MappingJacksonHttpMessageConverter: json 형식의 데이터 읽기 및 쓰기
SouceHttpMessageConverter: xml의 javax.xml.transform.Source에 의해 정의된 데이터 읽기 및 쓰기를 담당합니다.
Jaxb2RootElementHttpMessageConverter: xml 태그 형식 데이터 읽기 및 쓰기를 담당합니다. : Atom 형식의 데이터를 읽고 쓰는 역할
RssChannelHttpMessageConverter: RSS 형식의 데이터를 읽고 쓰는 역할
프로젝트에서는 json 변환기만 사용하므로 import해야 함 json 패키지에 대해; ):
<code> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> <version>1.9.11</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.11</version> </dependency> </code>
프로그래밍에 대해 더 자세히 알고 싶다면
php training
칼럼을 주목해주세요!
위 내용은 Spring의 여러 Ajax 및 백그라운드 데이터 전송 방법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!