- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 main.js
文件:
jQuery(function($) {
$('LI.tree-item-name').has('ul').click(function() {
if ($(this).hasClass('opened')) {
$(this).find('UL').slideUp();
$(this).removeClass('opened');
} else {
$(this).find('UL').slideDown();
$(this).addClass('opened');
}
return false;
});
$('LI.tree-item-name li').click(function(e) {
e.stopPropagation();
})
});
jQuery(window).load(function(){
jQuery('#video').removeClass('loading');
jQuery('#video .box').animate({'opacity' : '1'});
var $container = jQuery('#video');
$container.masonry({
columnWidth: 299,
itemSelector: '.box'
});
jQuery('.popupbox').click(function(){
jQuery('.popup:visible').fadeOut();
var id = '#'+jQuery(this).data('popup');
jQuery('#overlay').fadeIn();
jQuery(id).css('top', jQuery(window).height()/2 - jQuery(id).height()/2).fadeIn();
return false;
});
jQuery('.profile_popupbox').click(function(){
jQuery('.popup:visible').fadeOut();
var id = '#'+jQuery(this).data('popup');
jQuery('#overlay').fadeIn();
jQuery(id).css({'top': "20px", 'left': "-200px"}).fadeIn();
return false;
});
jQuery('#overlay').click(function(){
jQuery('.popup:visible').fadeOut();
jQuery(this).fadeOut();
});
});
我希望这对 Turbolinks 友好。
我试过:
var ready;
ready = jQuery(window).load(function(){
jQuery('#video').removeClass('loading');
jQuery('#video .box').animate({'opacity' : '1'});
var $container = jQuery('#video');
$container.masonry({
columnWidth: 299,
itemSelector: '.box'
});
jQuery('.popupbox').click(function(){
jQuery('.popup:visible').fadeOut();
var id = '#'+jQuery(this).data('popup');
jQuery('#overlay').fadeIn();
jQuery(id).css('top', jQuery(window).height()/2 - jQuery(id).height()/2).fadeIn();
return false;
});
jQuery('.profile_popupbox').click(function(){
jQuery('.popup:visible').fadeOut();
var id = '#'+jQuery(this).data('popup');
jQuery('#overlay').fadeIn();
// jQuery(id).css('top', jQuery(window).height() - jQuery(id).height()/2).fadeIn();
jQuery(id).css({'top': "20px", 'left': "-200px"}).fadeIn();
return false;
});
jQuery('#overlay').click(function(){
jQuery('.popup:visible').fadeOut();
jQuery(this).fadeOut();
});
});
$(document).ready(ready);
$(document).on('page:load', ready);
那是行不通的,也没有使这两个函数都对 Turbolinks 友好。
所以我只想让整个文件对 TL 友好。
编辑 1
我还有一个 upload.js.erb
,它有这个,在初始页面加载后不会执行:
$("#myVCModal").html("<%= escape_javascript(render 'videos/upload_video') %>");
$("#myModal").html("<%= escape_javascript(render 'videos/upload_video') %>");
$("#add-video-step-1").html("<%= escape_javascript(render 'videos/upload_video') %>");
$("#video-comment").html("<%= escape_javascript(render 'videos/upload_video') %>");
$('myModalPL').modal(show);
Ladda.bind('button');
我希望我的应用程序中的所有这些 JS 位都能恢复工作。
编辑2
所以现在我有 main.js
的东西在工作 - 谢谢 @User089247。但是其他执行 JS 的模态根本不起作用....即编辑 1 下的代码。
发生的事情是我点击了这个上传按钮:
<%= link_to "<i class='fa fa-film fa-lg'></i> Upload".html_safe, "#", class: "upload popupbox", data: { popup: "add-video-step-1"} %>
这是被触发的模式:
<div id="overlay"> </div>
<div class="popup" id="add-video-step-1">
<div class="titles clearfix">
<h2>Upload a Video</h2>
<p><i>Step 1 of 2 - TEST</i></p>
</div>
<div class="content">
<% if @family_tree %>
<%= simple_form_for([@family_tree, @video], :remote => true) do |f| %>
<div class="column">
<div class="f-row">
<%= f.input :title, label: "Title:" %>
</div>
<div class="f-row">
<%= f.input :description,label: "Description:" %>
</div>
<div class="f-row">
<%= f.input :circa, as: :datepicker, start_year: Date.today.year - 5, label: "Circa:" %>
</div>
<div class="f-row">
<label for="family">Family in this video:</label>
<%= f.collection_select :user_ids, @family_tree.members.order(:first_name), :id, :first_name, {}, {multiple: true} %>
</div>
</div>
<%= f.button :submit, "Add Video" %>
<% end %>
<% end %>
</div> <!-- //content -->
</div> <!-- //popup -->
然后当您按下“添加视频”时,它应该将您带到第二个模态:
<div class="bootstrap-styles">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Upload your Video</h3>
<p><i>Step 2 of 2 - TEST</i></p>
</div>
<div class="modal-body">
<div class="form">
<%= form_tag @upload_info[:url], :multipart => true do %>
<div>Step 2 of 2</div>
<%= hidden_field_tag :token, @upload_info[:token] %>
<%= file_field_tag :file, title: 'Choose video to upload' %>
<p class="uploader">
<button class="btn btn-success ladda-button" data-color="green" data-style="expand-left"><span class="ladda-label">Upload Video</span><span class="ladda-spinner"></span></button>
</p>
<% end %>
</div>
</div>
<div class="modal-footer">
</div>
</div>
我想问题是我没有看到根据我的 upload.js.erb
这第二个模态将如何执行,或者我是否遗漏了什么?
编辑3
以下是此上传视频操作完成后服务器日志的相关部分(为简洁起见被 chop ):
Started POST "/family_trees/1/videos" for 127.0.0.1 at 2014-10-28 02:16:48 -0500
Processing by VideosController#create as JS
Parameters: {"utf8"=>"✓", "video"=>{"title"=>"Hello there", "description"=>"Why hello there lady", "circa"=>"", "user_ids"=>[""]}, "commit"=>"Add Video", "family_tree_id"=>"1"}
User Load (3.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
FamilyTree Load (1.2ms) SELECT "family_trees".* FROM "family_trees" WHERE "family_trees"."user_id" = $1 LIMIT 1 [["user_id", 1]]
ReadMark Load (1.0ms) SELECT "read_marks".* FROM "read_marks" WHERE "read_marks"."user_id" = $1 AND "read_marks"."readable_type" = 'PublicActivity::ORM::ActiveRecord::Activity' AND "read_marks"."readable_id" IS NULL ORDER BY "read_marks"."id" ASC LIMIT 1 [["user_id", 1]]
FamilyTree Load (1.0ms) SELECT "family_trees".* FROM "family_trees" WHERE "family_trees"."id" = $1 LIMIT 1 [["id", 1]]
(1.2ms) SELECT COUNT(*) FROM "roles" INNER JOIN "users_roles" ON "roles"."id" = "users_roles"."role_id" WHERE "users_roles"."user_id" = $1 AND (((roles.name = 'admin') AND (roles.resource_type IS NULL) AND (roles.resource_id IS NULL))) [["user_id", 1]]
Membership Load (1.7ms) SELECT "memberships".* FROM "memberships" WHERE "memberships"."user_id" = 1 AND "memberships"."family_tree_id" = 1
(3.6ms) BEGIN
SQL (3.4ms) INSERT INTO "videos" ("created_at", "description", "title", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", "2014-10-28 07:16:48.340452"], ["description", "Why hello there lady"], ["title", "Hello there"], ["updated_at", "2014-10-28 07:16:48.340452"]]
(4.5ms) COMMIT
Redirected to http://localhost:3000/
Completed 302 Found in 40ms (ActiveRecord: 20.6ms)
Started GET "/" for 127.0.0.1 at 2014-10-28 02:16:48 -0500
User Load (4.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
Processing by DashboardController#index as JS
就其值(value)而言,即使在成功处理完此 GET "/"
请求之后,它实际上并没有重新加载/重定向浏览器。它只是停留在模态。
JS 控制台中的错误提示:
Failed to load resource: net::ERR_CACHE_MISS
这是VideoController#Create
def create
authorize! :read, @family_tree
@video = Video.new(video_params)
respond_to do |format|
if @video.save
format.html { redirect_to root_path }
format.json { render action: 'show', status: :created, location: @video }
else
format.html { render action: 'new' }
format.json { render json: @video.errors, status: :unprocessable_entity }
end
end
最佳答案
将您的 main.js 更改为此(我更喜欢这种方式,因为它很容易调试 jQuery 中的问题而不会迷失在方法的网络中,并且它与 turbolinks 一起工作得很好而无需为其添加 jquery-turbolinks gem ):
$(document).on("page:change", function(){
MainJS.init();
});
MainJS = {
init: function() {
MainJS.initializePage();
$('.popupbox').on('click', MainJS.popupBox);
$('.profile_popupbox').on('click', MainJS.profilePopupbox);
$('#overlay').on('click', MainJS.overLay);
$('LI.tree-item-name').has('ul').on('click', MainJS.treeItemName);
$('LI.tree-item-name li').on('click', function(ev) {
ev.stopPropagation();
});
},
initializePage: function(){
$('#video').removeClass('loading');
$('#video .box').animate({'opacity' : '1'});
var $container = $('#video');
$container.masonry({
columnWidth: 299,
itemSelector: '.box'
});
},
popupBox: function(){
$('.popup:visible').fadeOut();
var id = '#'+$(this).data('popup');
$('#overlay').fadeIn();
$(id).css('top', $(window).height()/2 - $(id).height()/2).fadeIn();
return false;
},
profilePopupbox: function(){
$('.popup:visible').fadeOut();
var id = '#'+$(this).data('popup');
$('#overlay').fadeIn();
// $(id).css('top', $(window).height() - $(id).height()/2).fadeIn();
$(id).css({'top': "20px", 'left': "-200px"}).fadeIn();
return false;
},
overLay: function(){
$('.popup:visible').fadeOut();
$(this).fadeOut();
},
treeItemName: function(){
if ($(this).hasClass('opened')) {
$(this).find('UL').slideUp();
$(this).removeClass('opened');
} else {
$(this).find('UL').slideDown();
$(this).addClass('opened');
}
return false;
}
}
现在,如果您可以轻松调试上面的代码以查看哪个部分工作/不工作,例如:
$(document).on("page:change", function(){
MainJS.init();
console.log('MainJS.init() was called successfully);
});
或:
MainJS = {
init: function() {
MainJS.initializePage();
$('.popupbox').on('click', MainJS.popupBox);
$('.profile_popupbox').on('click', MainJS.profilePopupbox);
$('#overlay').on('click', MainJS.overLay);
console.log('MainJS initialization was successful.');
},
等等。你明白了吧?
关于你的 upload.js.erb 问题,我不确定那里有什么问题,因为它应该工作(因为同样的事情对我有用),但是,你可以将你的代码包装起来:$(document).on("page:change", function(){
看看它是否有效,但我怀疑这不是问题所在。
关于javascript - 我如何使这个 JS Turbolinks 友好?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26459182/
为了我们公司的 SEO 需求,我们需要通过 301 将一些 SEO URL 更改为另一个 URL。 示例: /seo/keywords-1-2-3/ 到 /seo/mynew301page-1-2-3
使已经开发的 Vue 应用程序对 SEO 友好的最简单方法是什么(搜索引擎可以读取所有标题元标记)。 我已经研究过 NUXT,我将不得不再次重新构建整个过程,而且除了 SSR(服务器端渲染)部分之外,
我正在使用 Azure 数据库进行一些数据库管理,我需要执行查询,例如删除数据库中的所有约束。 sp_MSForEachTable 在使用 Azure 数据库时不可用,因此我正在采用不同的方法来实现此
在我的研究中,我发现了 2 种方法。 两者都需要修改 Global.Asax 中的 Application_BeginRequest 过程,您可以在其中运行代码来进行实际的 URL 映射(我的数据库
例如我有这个字符串: make no@ sen# `se ! 我会像这样生成 url make-no-sen-se! 我有这个: var value = $('.titleVal').val(
我有一个网站,我想开始使用友好的 URL。 所以不是: http://server.com/company.php?id=12 我可以使用: http://server.com/company/ste
我正在用 pandas 编写一些数据分析管道。我一直在使用的数据框中的一列是由自定义编写的类的对象组成的,每个类都用一个字符串初始化,我用正则表达式从中读取各种信息并存储在对象的属性中。子类结构类似于
这个问题已经存在: C++ create new windows command [closed] 关闭 4 年前。 我正在尝试创建一个 C++ 控制台应用程序并创建新命令。 我想做的事的例子:在终
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
我一直在尝试为 prestashop 中的产品创建第二个 url 重写选项.在 SEO 和 URL 部分的标准 Prestashop 安装中,我得到了以下产品 url 构建: {category:/}
我在使用重写引擎通过友好的 url 实现我的目标时遇到了一些问题。 基本上我有以下结构:- 索引.php - 吃下 - index.php 我在主索引中的链接是这样的:下载/index.php?dow
我真的不喜欢在链接中使用选择/选项元素: 但是他们已经找到了作为一种选择进入设计师组合的方式,并尽我所能劝阻他们不要使用它们,我知道如果没有谷歌的力量,我会输掉这场战斗,而且“这对 SEO 不利”。
dispose: function() { var disposer; while (disposer = this._disposers.shift()) { // expected
我将 Heroku 应用程序上的自定义域更改为新域。现在我将创建一个新的 Heroku 应用程序,它的唯一目的是重定向到第一个应用程序。 我在 Google Webmasters 中读到我应该像这样进
我有一个类。这个类有2个字段。 我有一个整数数组。我的任务是重载友好的“+”运算符,以便可以将数组中的字段值与数组元素的值相加。 例如: class Test { public: double
这个问题在这里已经有了答案: Encode URL in JavaScript (22 个答案) 关闭 9 年前。 您好,我有这个 URL(顶部),我正在尝试与“pinterest”一起使用,他们会
jQuery 模式对话框 seo 友好吗?如果不是,我们可以进行哪些更改,以便爬虫可以轻松读取模态对话框中的内容? 提前致谢。 编辑:抱歉忘记提及模式中的内容来自服务器端。所以它也使用 ajax。 最
这是我的 main.js 文件: jQuery(function($) { $('LI.tree-item-name').has('ul').click(function() { if (
static func randomShape() -> Shape { // Find out count of possible shapes var maxValue = 0
我正在构建一个通过 index.php 运行所有代码的网站。 例如 index.php?controller=something&id=01234。 我想使用 PHP 创建友好的 URL,所以我这样做
我是一名优秀的程序员,十分优秀!