Giter VIP home page Giter VIP logo

cms's People

Contributors

chaojunma avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

cms's Issues

lombok 的getter和setter似乎无效

Mac 10.11.6
Eclipse Version: 2018-09 (4.9.0)
jdk 1.8


git clone之后

PageParam的实例里面,getPage等方法都提示错误
使用source的自动添加setter和getter的方法之后解决报错
但是如果还是想用lombok应该如何设置?

import lombok.Getter;
import lombok.Setter;

@Setter
@getter
public class PageParam {
.....
}

用户列表和日志列表显示“返回的数据状态异常”

成功登陆之后
用户列表和日志列表都显示“返回的数据状态异常”

通过查找资料后,已经解决,但需要修改LayUI返回参数
我手动改了一下返回的参数,然后正常显示了
UserController.java里面
----------- 原来的
PageResult result = new PageResult<>(data);
renderJson(result);

----------- 手动改成
Map<String, Object> result = new HashMap<String, Object>();
result.put("code", 0);
result.put("msg", "");
result.put("count", data.getTotalRow());
result.put("data", data.getList());
renderJson(result);
----------- 则显示正常
您有空可以看下

有可能是LayUI官方修改了返回参数?

然后是否考虑写入PageResult里面?

本人是您网易课程的学员,可能有写的不好的地方,请见谅

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.