PENGZhaoqing / CourseSelect

校园选课系统样本 (a template for course selection system by Ruby on Rails)
https://courseselect.herokuapp.com/
MIT License
105 stars 206 forks source link

form表单submit按钮无法提交,除非刷新一次 #76

Closed 5663015 closed 6 years ago

5663015 commented 7 years ago

image 当用户第一次到这个页面时,点击查询按钮没有任何反应,刷新后就可以提交了。这是怎么回事? 视图代码:

image 这段代码总是粘贴不过来,只能截图了,不好意思 控制器代码:

def list
    @q1=params[:name]
    if @q1.nil? == false 
      @course = Course.where("name like '%#{@q1}%' ")
    else
      @course=Course.all
    end

……

PENGZhaoqing commented 7 years ago

浏览器F12进入开发模式,查看console控制台有没有错误输出

5663015 commented 7 years ago

image 这样吗?没有任何输出

PENGZhaoqing commented 7 years ago

这个我也不清楚了,除非我能操作你的电脑。。换个浏览器试试