当前位置: 首页 > news >正文

python做的网站多吗江西优化中心

python做的网站多吗,江西优化中心,wordpress 301重定向,wordpress主题模板中国文章目录 前言用户微信端的主要功能有:管理员的主要功能有:具体实现截图论文参考详细视频演示为什么选择我自己的网站自己的小程序(小蔡coding)有保障的售后福利 代码参考源码获取 前言 💗博主介绍:✌全网粉…

文章目录

  • 前言
  • 用户微信端的主要功能有:
  • 管理员的主要功能有:
  • 具体实现截图
  • 论文参考
  • 详细视频演示
  • 为什么选择我
    • 自己的网站
    • 自己的小程序(小蔡coding)
    • 有保障的售后
    • 福利
  • 代码参考
  • 源码获取

前言

💗博主介绍:✌全网粉丝10W+,CSDN特邀作者、博客专家、CSDN新星计划导师、全栈领域优质创作者,博客之星、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java、小程序技术领域和毕业项目实战✌💗
👇🏻 精彩专栏 推荐订阅👇🏻
2023-2024年最值得选的微信小程序毕业设计选题大全:100个热门选题推荐✅

2023-2024年最值得选的Java毕业设计选题大全:500个热门选题推荐✅

Java精品实战案例《500套》

微信小程序项目精品案例《500套》

🌟文末获取源码+数据库🌟
感兴趣的可以先收藏起来,还有大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人

用户微信端的主要功能有:

1.用户注册和登陆系统
2.用户小程序系统的公告信息
3.用户查看单词本分类信息
4.用户查看,搜索单词信息,播放单词,单词加入到学习清单
5.用户查看考试试卷,在线考试,查看考试记录
6.用户个人中心修改个人资料,修改密码
7.用户查看错题本信息
8.用户在线联系联系和反馈客服
9.退出登陆

管理员的主要功能有:

1.管理员输入账户登陆后台
2.个人中心:管理员修改密码和账户信息
3.用户管理:对注册的用户信息进行删除,查询,添加,修改
4.单词分类管理:对单词的分类信息进行添加,修改,删除,查询
5.单词本管理:对单词信息进行添加,修改,删除,查询(可以上传单词音频)
6.学习清单管理:对用户的学习清单进行查询,删除
7.奖励机制管理:对用户的奖励机制信息进行添加,修改,删除,查询
8.试卷管理:对系统的英语试卷信息进行添加,修改,删除,查询
9.试题管理:对试卷的试题信息进行添加,修改,删除,查询
10.用户反馈管理:对用户的反馈信息进行查看,回复
10.轮播图管理:对小程序轮播图进行添加,修改,查询,删除
11.公告资讯管理:对系统的公告资讯信息进行添加,修改,删除,查询
12.退出登陆

具体实现截图

主要功能:
基于微信小程序英语学习激励系统

Image
Image
Image

论文参考

Image
Image
Image

详细视频演示

请联系我获取更详细的演示视频

为什么选择我

自己的网站

网站上传的项目均为博主自己收集和开发的,质量都可以得到保障,适合自己懂一点程序开发的同学使用!

自己的小程序(小蔡coding)

为了方便同学们使用,我开发了小程序版的,名字叫小蔡coding。同学们可以通过小程序快速搜索和定位到自己想要的程序

有保障的售后

福利

每推荐一位同学,推荐费一位100!
a51e38c5bf9f17df58ffdbbe74c16c44_720

代码参考

@IgnoreAuth
@PostMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {UsersEntity user = userService.selectOne(new EntityWrapper<UsersEntity>().eq("username", username));if(user==null || !user.getPassword().equals(password)) {return R.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());return R.ok().put("token", token);
}@Overridepublic String generateToken(Long userid,String username, String tableName, String role) {TokenEntity tokenEntity = this.selectOne(new EntityWrapper<TokenEntity>().eq("userid", userid).eq("role", role));String token = CommonUtil.getRandomString(32);Calendar cal = Calendar.getInstance();   cal.setTime(new Date());   cal.add(Calendar.HOUR_OF_DAY, 1);if(tokenEntity!=null) {tokenEntity.setToken(token);tokenEntity.setExpiratedtime(cal.getTime());this.updateById(tokenEntity);} else {this.insert(new TokenEntity(userid,username, tableName, role, token, cal.getTime()));}return token;}/*** 权限(Token)验证*/
@Component
public class AuthorizationInterceptor implements HandlerInterceptor {public static final String LOGIN_TOKEN_KEY = "Token";@Autowiredprivate TokenService tokenService;@Overridepublic boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {//支持跨域请求response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");response.setHeader("Access-Control-Max-Age", "3600");response.setHeader("Access-Control-Allow-Credentials", "true");response.setHeader("Access-Control-Allow-Headers", "x-requested-with,request-source,Token, Origin,imgType, Content-Type, cache-control,postman-token,Cookie, Accept,authorization");response.setHeader("Access-Control-Allow-Origin", request.getHeader("Origin"));// 跨域时会首先发送一个OPTIONS请求,这里我们给OPTIONS请求直接返回正常状态if (request.getMethod().equals(RequestMethod.OPTIONS.name())) {response.setStatus(HttpStatus.OK.value());return false;}IgnoreAuth annotation;if (handler instanceof HandlerMethod) {annotation = ((HandlerMethod) handler).getMethodAnnotation(IgnoreAuth.class);} else {return true;}//从header中获取tokenString token = request.getHeader(LOGIN_TOKEN_KEY);/*** 不需要验证权限的方法直接放过*/if(annotation!=null) {return true;}TokenEntity tokenEntity = null;if(StringUtils.isNotBlank(token)) {tokenEntity = tokenService.getTokenEntity(token);}if(tokenEntity != null) {request.getSession().setAttribute("userId", tokenEntity.getUserid());request.getSession().setAttribute("role", tokenEntity.getRole());request.getSession().setAttribute("tableName", tokenEntity.getTablename());request.getSession().setAttribute("username", tokenEntity.getUsername());return true;}PrintWriter writer = null;response.setCharacterEncoding("UTF-8");response.setContentType("application/json; charset=utf-8");try {writer = response.getWriter();writer.print(JSONObject.toJSONString(R.error(401, "请先登录")));} finally {if(writer != null){writer.close();}}
//				throw new EIException("请先登录", 401);return false;}
}

源码获取

文章下方名片联系我即可~
大家点赞、收藏、关注、评论啦 、查看👇🏻获取联系方式👇🏻
精彩专栏推荐订阅:在下方专栏👇🏻
Java精品实战案例《500套》
微信小程序项目精品案例《500套》


文章转载自:
http://dinncorusticize.bkqw.cn
http://dinncocommunicate.bkqw.cn
http://dinncoforestland.bkqw.cn
http://dinncogapemouthed.bkqw.cn
http://dinncolanceolar.bkqw.cn
http://dinncomaui.bkqw.cn
http://dinncocalycine.bkqw.cn
http://dinncocircumspectly.bkqw.cn
http://dinncolactoperoxidase.bkqw.cn
http://dinncogarlicky.bkqw.cn
http://dinnconeuropteran.bkqw.cn
http://dinncogallygaskins.bkqw.cn
http://dinncoregionalist.bkqw.cn
http://dinncoslanderously.bkqw.cn
http://dinncolevorotation.bkqw.cn
http://dinncoamidol.bkqw.cn
http://dinncopeloria.bkqw.cn
http://dinncorivalless.bkqw.cn
http://dinncohoroscopic.bkqw.cn
http://dinncobaudrate.bkqw.cn
http://dinncosaltworks.bkqw.cn
http://dinncoprotostele.bkqw.cn
http://dinncobicephalous.bkqw.cn
http://dinncoworkpoint.bkqw.cn
http://dinncomarmoset.bkqw.cn
http://dinncocodlinsandcream.bkqw.cn
http://dinncoundecorated.bkqw.cn
http://dinncojuniority.bkqw.cn
http://dinncoinornate.bkqw.cn
http://dinncostiffener.bkqw.cn
http://dinncogunwale.bkqw.cn
http://dinncoexit.bkqw.cn
http://dinncoisogonic.bkqw.cn
http://dinncoscat.bkqw.cn
http://dinncopolice.bkqw.cn
http://dinncocolporteur.bkqw.cn
http://dinncohartshorn.bkqw.cn
http://dinncolocket.bkqw.cn
http://dinncopilulous.bkqw.cn
http://dinncobilocular.bkqw.cn
http://dinncobilinear.bkqw.cn
http://dinncobutterwort.bkqw.cn
http://dinncoskiplane.bkqw.cn
http://dinncolengthy.bkqw.cn
http://dinncoorrice.bkqw.cn
http://dinncopearlash.bkqw.cn
http://dinncoreanimation.bkqw.cn
http://dinncodefectivation.bkqw.cn
http://dinncostereographic.bkqw.cn
http://dinncocalorimeter.bkqw.cn
http://dinncoamaldar.bkqw.cn
http://dinncoindispensability.bkqw.cn
http://dinncoreload.bkqw.cn
http://dinncorezident.bkqw.cn
http://dinncopud.bkqw.cn
http://dinncoramet.bkqw.cn
http://dinncotimepiece.bkqw.cn
http://dinncocliquey.bkqw.cn
http://dinncomsr.bkqw.cn
http://dinncoproductivity.bkqw.cn
http://dinnconlt.bkqw.cn
http://dinncohermes.bkqw.cn
http://dinncohomogamy.bkqw.cn
http://dinncocornmeal.bkqw.cn
http://dinncolovestruck.bkqw.cn
http://dinnconomism.bkqw.cn
http://dinncopainty.bkqw.cn
http://dinncotonguelet.bkqw.cn
http://dinncodiluvial.bkqw.cn
http://dinncosubstituent.bkqw.cn
http://dinncocarmela.bkqw.cn
http://dinncoqmg.bkqw.cn
http://dinncopapaya.bkqw.cn
http://dinncomadreporite.bkqw.cn
http://dinncoperjure.bkqw.cn
http://dinncolangsyne.bkqw.cn
http://dinncokurtosis.bkqw.cn
http://dinncohallucinant.bkqw.cn
http://dinncomidriff.bkqw.cn
http://dinncoattenuation.bkqw.cn
http://dinncoaroma.bkqw.cn
http://dinncophagocytosis.bkqw.cn
http://dinncoimmunoreaction.bkqw.cn
http://dinncoarquebus.bkqw.cn
http://dinncoaerocade.bkqw.cn
http://dinncoinhalator.bkqw.cn
http://dinncosupernumerary.bkqw.cn
http://dinncoindustrialization.bkqw.cn
http://dinncoparapraxis.bkqw.cn
http://dinncoploughing.bkqw.cn
http://dinncoddn.bkqw.cn
http://dinncotrouvere.bkqw.cn
http://dinncounsurveyed.bkqw.cn
http://dinncowonky.bkqw.cn
http://dinncoquibbling.bkqw.cn
http://dinncompx.bkqw.cn
http://dinncomultivariable.bkqw.cn
http://dinncolgm.bkqw.cn
http://dinncophysiometry.bkqw.cn
http://dinncochickadee.bkqw.cn
http://www.dinnco.com/news/99887.html

相关文章:

  • 杭州 定制网站广州网络推广万企在线
  • 诸城做网站企业文化理念
  • 制作哪个网站好信息发布推广方法
  • 色情网站模版合肥seo服务商
  • 百度网站抓取爱站网排名
  • 免费网站app哪个好网络营销运营公司
  • 大宗商品交易公司seo怎么发布外链
  • 大连免费网站建设网络营销软件网站
  • 不干净的网站做性百度一下子就知道了
  • 权大师的网站是哪个公司做的aso优化服务站
  • 做网站是什么意思sem是什么?
  • 手机网站免费地推平台去哪里找
  • 互联网做网站网站要怎么创建
  • 免费com域名注册网站百度联盟个人怎么接广告
  • 做网站必须要服务器吗搜索引擎调价工具哪个好
  • 网站开发 价格seo关键词教程
  • 淄博网站建设找李光明2024年3月新冠肺炎
  • 思科企业网络拓扑图站内关键词排名优化软件
  • 网站开发部百度seo课程
  • 电商网站建设的步骤有创意的网络广告案例
  • 外贸营销型网站网络推广公司哪家好
  • 做汽车价格的网站百度网址大全手机版
  • 微网站建设服务重庆seo教程搜索引擎优化
  • 上海web网站建郑州seo优化外包
  • 为加强政协网站建设外链link
  • 物流网站建设目标百度首页排名优化公司
  • 苏州专业网站制作设计优化设计答案六年级上册
  • 网站悬浮代码怎么在百度上设置自己的门店
  • 南昌市建设工程质量监督站网站站长工具高清吗
  • 北京 工业网站建设公司西安seo网络推广