2、layui使用中遇到的问题2021-01-10

1、修改内容时,报如下错误:

image.png

10:18:10.353 cgbmall [http-nio-8080-exec-5] WARN o.s.w.s.m.s.DefaultHandlerExceptionResolver - Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'java.lang.Integer'; nested exception is java.lang.NumberFormatException: For input string: "_eduit_classification"]
找了半天原因,原来是需要在alyui框架的ajax请求前面加一个 /,controller的请求上也要加 / ,不知道什么原因....

 //如果修改了,执行修改的方法
        $.ajax({
              url:'/_eduit_classification',
                type:"get",
                data:data.field,
                dataType:"json",
                success: function(data) {
 @GetMapping("/_eduit_classification")
  public JSONObject eduClassf(NewsClassification newsClassification){

2、新闻简介是后台动态加载的,但是点击时死活出不来。


2、layui使用中遇到的问题2021-01-10_第1张图片
图片.png

原因:我写的方法是当点击下拉框标签时,再去动态的加载下拉框的值,导致数据迟迟加载不出来。
方案:页面加载的时候直接调用后端接口append上后台数据,


并且需要在layui初始化的位置,加上form.render();,(如果你的HTML是动态生成的,自动渲染就会失效,因此你需要在相应的地方,执行下述方法来手动渲染)


                    
                    

你可能感兴趣的:(2、layui使用中遇到的问题2021-01-10)