当前位置:首页 » 网页前端 » 后端返回对象格式的数据给前端
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

后端返回对象格式的数据给前端

发布时间: 2023-02-25 22:05:49

‘壹’ 前端需要java后端传多个对象数据怎么传

很多时候前端需要传递多个不同类型对象到后台,这时可以将所有需上传的对象保存在一个数组里,之后向后台上传数组即可。

‘贰’ 微信小程序后端怎么给前端返回成功状态码

这要看你的后端是以什么形式给前端返回信息的。比如说是纯文本格式(以php为例):

header("Content-Type:text/html");
echo"100";

那么小程序中可以这样来判断(假定100就表示成功):

wx.request({
url:"......",
success:res=>{
if(res.data=="100"){/*此时res.data就是个字符串*/
//成功
}else{
//失败
}
},
fail:()=>{
//错误
}
})

如果后端以json对象格式返回数据,比如:

header("Content-Type:application/json");
echo"{'code':'100','msg':'成功'}";

那么小程序中则这样判断:

wx.request({
url:"......",
success:res=>{
if(res.data.code=="100"){/*这个res.data则是个json对象*/
//成功
}else{
//失败
}
},
fail:()=>{
//错误
}
})

‘叁’ 将后端数据库的数据取出来放到前端页面里来

将后端数据库的某个表连同其结构数据和数据重新分别导入所有的前端ACCESS数据库后再删除后端数据库那个表就好了。当然最快捷的方法是只对一个前端这么做然后再分发那个前端给各个终端用户。 记得导回后端表前先删除前端数据库对后端数据库那张表的链接(链接表)。

‘肆’ 编辑页面数据初始化时,一条数据中的某个字段,java后台怎么返回给前端数组

spring方式

packagecom.learn;

importlombok.extern.log4j.Log4j2;
importorg.springframework.boot.SpringApplication;
importorg.springframework.boot.autoconfigure.SpringBootApplication;
importorg.springframework.boot.web.servlet.ServletRegistrationBean;
importorg.springframework.context.annotation.Bean;
importorg.springframework.stereotype.Controller;
importorg.springframework.web.bind.annotation.GetMapping;
importorg.springframework.web.bind.annotation.Mapping;
importorg.springframework.web.bind.annotation.RestController;

importjava.util.*;

@SpringBootApplication
@Log4j2
@RestController
{

publicstaticvoidmain(String[]args){
SpringApplication.run(LearnConcurrencyApplication.class,args);
}

@GetMapping("/")
publicStringtest(){
log.warn("Receiverequest.");
return"test";
}

@GetMapping("/a")
publicMap<String,Object>getA(){
StudentInfoinfo=newStudentInfo();

//方式1,假设字段a是字符串
//info.setA("1,2,3,4,5,6");
//Map<String,Object>result=newHashMap<>();
//result.put("A",Arrays.asList(info.getA().split(",")));
//returnresult;

//假设A是list
List<String>list=Arrays.asList("1,2,3,4,5,6".split(","));
info.setA1(list);
Map<String,Object>result=newHashMap<>();
result.put("A",info.getA1());
returnresult;
}

@Bean
(){
=newServletRegistrationBean();
servletRegistrationBean.addUrlMappings("/sa");
servletRegistrationBean.setServlet(newMyServlet());
returnservletRegistrationBean;
}
}

servlet方式,注意依赖jackson,jar包

packagecom.learn;

importcom.fasterxml.jackson.databind.ObjectMapper;

importjavax.servlet.ServletException;
importjavax.servlet.http.HttpServlet;
importjavax.servlet.http.HttpServletRequest;
importjavax.servlet.http.HttpServletResponse;
importjava.io.IOException;
importjava.util.Arrays;
importjava.util.HashMap;
importjava.util.List;
importjava.util.Map;

/**
*@authorlixiaosuo
*@since2019-04-1210:05
*/
{
@Override
protectedvoiddoGet(HttpServletRequestreq,HttpServletResponseresp)throwsServletException,IOException{
StudentInfoinfo=newStudentInfo();
List<String>list=Arrays.asList("1,2,3,4,5,6".split(","));
info.setA1(list);
Map<String,Object>result=newHashMap<>();
result.put("A",info.getA1());

//依赖jackson
ObjectMappermapper=newObjectMapper();
Stringjson=mapper.writeValueAsString(result);

resp.setContentType("application/json;charset=utf-8");
resp.setCharacterEncoding("utf-8");
resp.getWriter().write(json);
resp.getWriter().flush();
resp.getWriter().close();
}
}

辅助类

packagecom.learn;

importjava.util.List;

/**
*@authorlixiaosuo
*@since2019-04-1209:46
*/
publicclassStudentInfo{

publicStringa;
publicList<String>a1;

publicStringgetA(){
returna;
}

publicvoidsetA(Stringa){
this.a=a;
}

publicList<String>getA1(){
returna1;
}

publicvoidsetA1(List<String>a1){
this.a1=a1;
}
}

spring实现,输出结果:

‘伍’ JAVA后台如何返回数据给前台前台怎么取到数据呢

试试giiwa, 简单,完全开源,封装了HTTP请求的多重格式,并提供统一APIs。

‘陆’ 怎么把后台获取到的数据放到前端jsp界面

JSP页面有几个内置对象,需要用到的几个如下:
request:包括http请求参数
response:请求响应
pageContext:可以用这个对象获取request和response。
out:用于向页面中传入数据
假如现在login.jsp有一个表单User,需要提交到后台。
<form action="" method="post" id="User">
<input type="text" name="UserName">
<button type="submit">submit</button>
</form>
那login.jsp下有几个对象,其中有pageContext.由于pageContext可以得到request对象。request.getParameter(name);可以得到相应字段,可以在login.jsp中传pageContext对象到后台。
<%
Recepter a=new Recepter();
a.getPara(pageContext);
%>
在后台处理的的是Recepter类。
public class Recepter {
String Username;
//传入的参数为login.jsp的pageContext对象
public String getPara(PageContext pc)throws Exception{
//获取login.jsp的写入对象
PrintWriter out=pc.getResponse().getWriter();
ServletRequest request=pc.getRequest();
//获取login.jsp的表单name="UserName"的数据。
String uname=request.getParameter("UserName")
out.print(uname);
}
private void setUsername(String username){
this.username=username;
}
public String getUsername(){
return Username;
}
}
现在我们的表单字段已经传入到Recepter的java代码中了,可以进行相应的处理。
而后台的数据传到前端:
可以在login.jsp中创建一个java示例,通过方法的返回值来获取。
现在创建一个result.jsp页面获取Recepter的UserName,
result.jsp的部分如下:
<%Recepter recept=new Recepter()%>
<div><%=recept.getUsername()%></div>
虽然没有遵循java对象的设计原则。但是实现了java数据前后台的简单交互。