基于微信小程序的健康食谱交流共享平台小程序

发布时间:2024-12-09 02:32

使用微信小程序或拼多多等平台 #生活技巧# #省钱技巧# #网购省钱策略#

博主主页:一点素材
博主简介:专注Java技术领域和毕业设计项目实战、Java、微信小程序、安卓等技术开发,远程调试部署、代码讲解、文档指导、ppt制作等技术指导。
主要内容:SpringBoot、Vue、SSM、HLMT、Jsp、PHP、Nodejs、Python、小程序、安卓app、大数据等设计与开发。

文末获取联系

系统功能:

(1)小程序:首页、美食菜谱、美食论坛、我的(我的收藏管理、我要发贴、我的发贴、用户留言)。

(2)管理员:首页、个人中心、用户管理、美食分类管理、美食口味管理、菜系管理、美食菜谱管理、美食论坛、用户留言、系统管理。

系统包含技术:

开发语言:Java

框架:ssm

开发软件:eclipse/myeclipse/idea

小程序框架:uniapp

小程序开发软件:HBuilder X

小程序运行软件:微信开发者

小程序端效果图如下:

 

后台管理效果图如下:

 

部分代码: 

@IgnoreAuth

@RequestMapping(value = "/login")

public R login(String username, String password, String captcha, HttpServletRequest request) {

YonghuEntity user = yonghuService.selectOne(new EntityWrapper<YonghuEntity>().eq("yonghuzhanghao", username));

if(user==null || !user.getMima().equals(password)) {

return R.error("账号或密码不正确");

}

String token = tokenService.generateToken(user.getId(), username,"yonghu", "用户" );

return R.ok().put("token", token);

}

@RequestMapping("/upload")

public R upload(@RequestParam("file") MultipartFile file,String type) throws Exception {

if (file.isEmpty()) {

throw new EIException("上传文件不能为空");

}

String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);

File path = new File(ResourceUtils.getURL("classpath:static").getPath());

if(!path.exists()) {

path = new File("");

}

File upload = new File(path.getAbsolutePath(),"/upload/");

if(!upload.exists()) {

upload.mkdirs();

}

String fileName = new Date().getTime()+"."+fileExt;

File dest = new File(upload.getAbsolutePath()+"/"+fileName);

file.transferTo(dest);

if(StringUtils.isNotBlank(type) && type.equals("1")) {

ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));

if(configEntity==null) {

configEntity = new ConfigEntity();

configEntity.setName("faceFile");

configEntity.setValue(fileName);

} else {

configEntity.setValue(fileName);

}

configService.insertOrUpdate(configEntity);

}

return R.ok().put("file", fileName);

}

网址:基于微信小程序的健康食谱交流共享平台小程序 https://www.yuejiaxmz.com/news/view/419934

相关内容

微信小程序nodejs+vue+uniapp健康食谱交流共享平台
基于微信小程序的美食菜谱交流平台(附源码)
计算机毕业设计ssm+vue基本微信小程序的健康食谱交流共享平台
基于微信小程序旧物共享平台
微信小程序模版|健康菜谱微信小程序源码
springboot基于微信小程序二手交易平台
基于微信小程序的中国各地美食推荐平台小程序
基于微信小程序的智能日程规划平台
java基于微信小程序的美食制作教程系统 uniapp 小程序
【微信小程序】个人健康管理系统小程序

随便看看