litemall
litemall copied to clipboard
又一个小商城。litemall = Spring Boot后端 + Vue管理员前端 + 微信小程序用户前端 + Vue用户移动端
导出表格问题:  经检查代码,发现是引入模块的方式出了问题,作如下更改,可解决:  后续导出功能正常
This addresses some of the issues raised in https://huntr.dev/bounties/ddaae70a-d91f-4695-a8c2-589fb6557784/
复现步骤: 选择商品加入购物车 -> 点击【购物车】-> 点击【编辑】-> 选择添加的商品,点击【+】号增加商品数量至大于库存数量 预期结果: 增加失败,提示【库存不足】 实际结果: 增加成功(此商品库存数量为1)
### 1.  Don't rely too much on mybatis generator,It brings SQL injection. In addition,receiving parameters with "${}" will prevent mybatis from executing SQL in precompiled form,this leads to SQL...
各位大佬好: 我现在遇到这样一个问题,IDEA本地运行测试,访问http://localhost:8080/wx/index/index正常; 但是打包并运行,访问http://localhost:8080/wx/index/index出现错误: `This application has no explicit mapping for /error, so you are seeing this as a fallback.` 我用winrar查看包内容,里面有包含litemall-wx-api-0.1.0.jar,是不是说明已经打包进去了。 然后我单独运行 java -jar litemall-wx-api/target/litemall-wx-api-0.1.0.jar,也是正常的。 我想问一下我要怎么解决这个问题,谢谢大佬了
Syntax Error: TypeError: E:\Desktop\src_java\mall-shop\litemall\litemall-font\litemall-vue\src\views\order\tabbar- cart.vue: Cannot read property 'has' of undefined
现在功能很不稳定,处在开发阶段。 现在稳定了么?
代码缺少美感
@PostMapping("submit") public Object submit(@LoginUser Integer userId, @RequestBody String body) { if (userId == null) { return ResponseUtil.unlogin(); } if (body == null) { return ResponseUtil.badArgument(); } Integer cartId = JacksonUtil.parseInteger(body,...
演示环境还开着不,开着的话密码是多少啊
在登录成功后,调用了GET请求,获取登录用户信息,结果在后台AdminWebSessionManager里面,getSessionId去取header里面的“X-Litemall-Admin-Token”,没有取到,结果发现request的请求方法是“OPTIONS”, 正常情况下,OPTIONS请求不应该走到这里来,不知道是什么原因,可能是我改出来的问题!