所以我一直在这里发疯。我对编码很陌生,不知道如何解决这个问题。
我正在使用 ruby 2 和 arshaw 的 FullCalendar 制作一个 rails 4 应用程序。
正确的脚本出现在头部。调用日历的 JQuery 脚本在头部。日历正在工作。问题是日历处于用户从标题中的链接导航到的不同视图中。日历不会出现,但会在刷新页面时出现。
我不知道为什么会发生这种情况,但我认为它与头部中的初始化脚本有关,需要存在 div id='calendar'。在调用后面的视图之前它没有这个,因此我记得头上的脚本并且一切正常。
我将在此处尽可能多地修补代码,完整代码可在以下位置获得:
https://github.com/joesus/MtgCal
到目前为止,我已经尝试使用控制器来刷新页面,但我无法弄清楚如何做到这一点,除非它让我进入无限循环,而且它只刷新视图的那一部分,所以无论如何它都无济于事。
我尝试过使用 js 超时,但它似乎只刷新了部分视图,而不是整个页面,所以它不起作用。
这是我的布局:application.html.erb
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= content_for?(:title) ? yield(:title) : "1311 York St" %></title>
<%= csrf_meta_tags %>
<%= render 'layouts/shim' %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= render 'layouts/device_specific' %>
<%= javascript_include_tag "application" %>
<!-- Tried calling the script from partial _cal.html.erb instead of a .js file with the same info,
didn't fix anything, not sure why I thought it might. -->
</head>
<body>
<!-- <div id='calendar' style='display: none'></div>
Thought I could initialize it in the layout
then call it again in the schedule view. Didn't work. -->
<%= render 'layouts/header' %>
<p id="bodytop"></p>
<%= bootstrap_flash %>
<%= yield %>
<%= render 'layouts/footer' %>
</div>
</body>
</html>
这是我初始化日历的脚本: /assets/javascripts/initialize.js
$(document).ready(function() {
// page is now ready, initialize the calendar...
//
$('#calendar').fullCalendar({
events: 'http://www.google.com/calendar/feeds/.../public/basic',
weekMode: 'liquid',
height: 600,
defaultView: 'agendaWeek',
allDaySlot: false,
header: {
left: 'title',
center: 'agendaDay,agendaWeek,month',
right: 'today prev,next'
}
});
});
这在头部的本地主机中显示为:
<script src="/assets/jquery-ui-1.10.3.custom.min.js?body=1"></script>
这就是我调用日历存在的地方:/views/layouts/static_pages/schedule.html.erb
<h1>Meetings</h1>
<div id='calendar'></div>
基本上,当我导航到在主布局中呈现的视图时,我需要想办法刷新头部的信息。
任何建议将不胜感激。同样,整个事情都在 github 上,所以也许我在其他地方打破了一些东西来解释这一点。
谢谢,乔
更新:
我实现了 Erowlin 的解决方案,现在我的 initalize.js 看起来像这样:
$(document).on('ready page:load', function(){
$('#calendar').fullCalendar({
events: 'http://www.google.com/calendar/feeds/..../public/basic',
weekMode: 'liquid',
height: 600,
defaultView: 'agendaWeek',
allDaySlot: false,
header: {
left: 'title',
center: 'agendaDay,agendaWeek,month',
right: 'today prev,next'
},
windowResize: function(view) {
if ($(window).width() < 514){
$('#calendar').fullCalendar( 'changeView', 'agendaDay' );
} else {
$('#calendar').fullCalendar( 'changeView', 'agendaWeek' );
}
}
});
});
它工作得很好,让我的 schedule.html.erb 视图看起来干净漂亮。
<h1>Meetings</h1>
<div id='calendar'></div>
windowResize 回调用于解决不同的问题。此处的更多信息: 如何让 Adam Shaw 的 fullCalendar 在 rails 4 应用程序中响应显示
再次感谢您的帮助。