Rails6:渲染partial后执行一个JS函数
Rails 6: execute a JS function after rendering partial
Rails & Javascript 初学者,
在一个培训项目中,我使用 JQuery 让 flash
消息在几秒后消失。访问者会发送 AJAX 请求将产品添加到他的购物车,然后会出现闪光部分 'Added to cart' 并在几秒后自动淡出。
# application.html.erb
<div id='flash' class='flex-column'>
<%= render partial: 'shared/flash' %>
</div>
# shared/_flash.html.erb
<% flash.each do |key, value| %>
<%= display_flash(key, value) %>
<%= javascript_pack_tag 'custom/flash' %>
# this works, but injects the script each times the partial is rendered
<% end %>
# helpers/application_helper.rb
def display_flash(key, value)
def display_flash(key, value)
div_class = [flash_class(key), 'text-center fade show alert-dismissible'].join(' ')
content_tag(:div, class: div_class) do
content_tag(:p, value) +
button_tag(class: 'ml-auto close', 'data-dismiss': 'alert', type: 'button') do
content_tag(:span, '×'.html_safe, 'aria-hidden': 'true') +
content_tag(:span, 'Close', class: 'sr-only')
end
end
end
end
// app/javascript/packs/custom/flash.js
function closeFlash(){
let lastAlert = $('#flash .alert:last')
function fadeFlash() {
lastAlert.animate( {opacity: 0}, 2000, function() {
$(this).hide('slow', function() {
$(this).remove()
});
});
};
setTimeout(fadeFlash, 2000)
};
closeFlash();
问题是它用不必要的 <script>
标签污染了我的 DOM:
这可以修复,但是是否有合适的方法在渲染 (AJAX) 部分后执行一个特定的 javascript 函数?
在我的例子中,每次渲染部分时执行位于 packs/custom/flash.js
的 closeFlash()
。
感谢您的帮助和宝贵时间
编辑 解决方案:
来自 Amit Patel 的回答和
# app/views/shared/_flash.html.erb
<% flash.each do |key, value| %>
<%= display_flash(key, value) %>
<script>
$(function() {
closeFlash();
});
</script>
<% end %>
// app/javascript/packs/custom/flash.js
window.closeFlash = function() {
let lastAlert = $('#flash .alert:last')
function fadeFlash() {
lastAlert.animate( {opacity: 0}, 2000, function() {
$(this).hide('slow', function() {
$(this).remove()
});
});
};
setTimeout(fadeFlash, 2000)
};
它不会注入整个函数,但(我相信)调用它的最小 javascript 代码。
将 <%= javascript_pack_tag 'custom/flash' %>
移动到您的布局或 application.js` 以便它在整个应用程序中可用。
像这样修改您的模板
application.html.erb
<div id='flash' class='flex-column'>
<%= render partial: 'shared/flash' %>
<script>
$(function(){
closeFlash();
});
</script>
</div>
一种更新的方法是设置 Stimulus 控制器。
Rails & Javascript 初学者,
在一个培训项目中,我使用 JQuery 让 flash
消息在几秒后消失。访问者会发送 AJAX 请求将产品添加到他的购物车,然后会出现闪光部分 'Added to cart' 并在几秒后自动淡出。
# application.html.erb
<div id='flash' class='flex-column'>
<%= render partial: 'shared/flash' %>
</div>
# shared/_flash.html.erb
<% flash.each do |key, value| %>
<%= display_flash(key, value) %>
<%= javascript_pack_tag 'custom/flash' %>
# this works, but injects the script each times the partial is rendered
<% end %>
# helpers/application_helper.rb
def display_flash(key, value)
def display_flash(key, value)
div_class = [flash_class(key), 'text-center fade show alert-dismissible'].join(' ')
content_tag(:div, class: div_class) do
content_tag(:p, value) +
button_tag(class: 'ml-auto close', 'data-dismiss': 'alert', type: 'button') do
content_tag(:span, '×'.html_safe, 'aria-hidden': 'true') +
content_tag(:span, 'Close', class: 'sr-only')
end
end
end
end
// app/javascript/packs/custom/flash.js
function closeFlash(){
let lastAlert = $('#flash .alert:last')
function fadeFlash() {
lastAlert.animate( {opacity: 0}, 2000, function() {
$(this).hide('slow', function() {
$(this).remove()
});
});
};
setTimeout(fadeFlash, 2000)
};
closeFlash();
问题是它用不必要的 <script>
标签污染了我的 DOM:
这可以修复,但是是否有合适的方法在渲染 (AJAX) 部分后执行一个特定的 javascript 函数?
在我的例子中,每次渲染部分时执行位于 packs/custom/flash.js
的 closeFlash()
。
感谢您的帮助和宝贵时间
编辑 解决方案:
来自 Amit Patel 的回答和
# app/views/shared/_flash.html.erb
<% flash.each do |key, value| %>
<%= display_flash(key, value) %>
<script>
$(function() {
closeFlash();
});
</script>
<% end %>
// app/javascript/packs/custom/flash.js
window.closeFlash = function() {
let lastAlert = $('#flash .alert:last')
function fadeFlash() {
lastAlert.animate( {opacity: 0}, 2000, function() {
$(this).hide('slow', function() {
$(this).remove()
});
});
};
setTimeout(fadeFlash, 2000)
};
它不会注入整个函数,但(我相信)调用它的最小 javascript 代码。
将 <%= javascript_pack_tag 'custom/flash' %>
移动到您的布局或 application.js` 以便它在整个应用程序中可用。
像这样修改您的模板
application.html.erb
<div id='flash' class='flex-column'>
<%= render partial: 'shared/flash' %>
<script>
$(function(){
closeFlash();
});
</script>
</div>
一种更新的方法是设置 Stimulus 控制器。