• 大小: 34.96MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-07-24
  • 语言: 数据库
  • 标签:   全栈,  

资源简介

签到打卡小程序 + 后端实现 ; 后端是 springmvc + mybatis + mysql实现

资源截图

代码片段和文件信息

package com.spring.mvc.xcx;

import java.util.ArrayList;
import java.util.List;

import net.sf.json.JSONArray;
import net.sf.json.JSONException;
import net.sf.json.JSONobject;

import org.apache.commons.collections.CollectionUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.spring.mvc.xcx.dao.UserSignDate;
import com.spring.mvc.xcx.dao.UserSignDateDao;
import com.spring.mvc.xcx.util.CalendarUtil;

/**
 * 这是小程序-小诗词的rest请求
 */
@Controller
@RequestMapping(“/xcx/rest“)
public class RestController {

// dao 的注入
@Autowired
private UserSignDateDao userSignDateDao;

@RequestMapping(“/getOpenid“)
@ResponseBody
public String getOpenid(String jscode){
//微信小程序id
String appId = “your_appid“;
//微信小程序Secret
String appSecret = “your_appsecret“;

//获取请求的url
String url  = WxApi.getJsCodeSessionUrl(appId appSecret jscode);
JSONobject jsonobject = WxApi.httpsRequest(url “GET“ null);

//获取openid
String openid = ““;
if (null != jsonobject && !jsonobject.containsKey(“errcode“)) {
try {
openid = jsonobject.getString(“openid“);
} catch (JSONException e) {
}
}
return openid;
}

//获取签到数据
@RequestMapping(“/getSignDates“)
@ResponseBody
public String getSignDates(String openid Integer year Integer month){
UserSignDate queryEntity = new UserSignDate();
queryEntity.setOpenid(openid);//设置用户的openid
queryEntity.setYear(year);//设置年
queryEntity.setMonth(month);//设置月
//获取已经签到的数据
List list = userSignDateDao.queryAll(queryEntity);

//将日期返回
List days = new ArrayList();
if(CollectionUtils.isNotEmpty(list)){
for(UserSignDate item : list){
days.add(item.getDay());
}
}
return JSONArray.fromobject(days).toString();
}

//实现签到
@RequestMapping(“/doSign“)
@ResponseBody
public String doSign(String openid){
UserSignDate entity = new UserSignDate();
entity.setOpenid(openid);
entity.setYear(CalendarUtil.getYear());
entity.setMonth(CalendarUtil.getMonth());
entity.setDay(CalendarUtil.getDate());

//先判断是否已经签过到
List list = userSignDateDao.queryAll(entity);
if(CollectionUtils.isNotEmpty(list)){
//已经签过到,不做任何处理
}else{
userSignDateDao.create(entity);//加入今日签到数据
}

return new JSONobject().toString();
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-03 11:36  Calendar\
     目录           0  2018-05-03 11:25  Calendar\Calendar\
     文件        1148  2018-05-03 10:24  Calendar\Calendar\app.js
     文件         250  2018-05-03 08:46  Calendar\Calendar\app.json
     文件         173  2018-05-03 08:44  Calendar\Calendar\app.wxss
     目录           0  2018-05-03 11:25  Calendar\Calendar\pages\
     目录           0  2018-05-03 11:25  Calendar\Calendar\pages\index\
     文件        4235  2018-05-03 10:37  Calendar\Calendar\pages\index\index.js
     文件         888  2018-05-03 08:43  Calendar\Calendar\pages\index\index.wxml
     文件         899  2018-05-03 08:45  Calendar\Calendar\pages\index\index.wxss
     目录           0  2018-05-03 11:25  Calendar\Calendar\pages\logs\
     文件         261  2018-05-03 08:41  Calendar\Calendar\pages\logs\logs.js
     文件          52  2018-05-03 08:41  Calendar\Calendar\pages\logs\logs.json
     文件         173  2018-05-03 08:41  Calendar\Calendar\pages\logs\logs.wxml
     文件         106  2018-05-03 08:41  Calendar\Calendar\pages\logs\logs.wxss
     文件         531  2018-05-03 11:25  Calendar\Calendar\project.config.json
     目录           0  2018-05-03 11:25  Calendar\Calendar\service\
     文件        2296  2018-05-03 08:47  Calendar\Calendar\service\Calendar.js
     文件         260  2018-04-13 23:30  Calendar\Calendar\service\Common.js
     目录           0  2018-05-03 11:25  Calendar\Calendar\utils\
     文件         472  2018-05-03 08:41  Calendar\Calendar\utils\util.js
     目录           0  2018-05-03 11:25  Calendar\CalendarMvc\
     文件         834  2018-05-03 09:20  Calendar\CalendarMvc\.classpath
     文件        1044  2018-05-03 09:20  Calendar\CalendarMvc\.project
     目录           0  2018-05-03 11:25  Calendar\CalendarMvc\.settings\
     文件         503  2018-05-03 09:20  Calendar\CalendarMvc\.settings\.jsdtscope
     文件         364  2018-05-03 09:20  Calendar\CalendarMvc\.settings\org.eclipse.jdt.core.prefs
     文件         485  2018-05-03 09:20  Calendar\CalendarMvc\.settings\org.eclipse.wst.common.component
     文件         345  2018-05-03 09:21  Calendar\CalendarMvc\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2018-05-03 09:20  Calendar\CalendarMvc\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-05-03 09:20  Calendar\CalendarMvc\.settings\org.eclipse.wst.jsdt.ui.superType.name
............此处省略110个文件信息

评论

共有 条评论