lazy:对于Lazyload图像gem来说,它会破坏Ruby on Rails 5的图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lazy:对于Lazyload图像gem来说,它会破坏Ruby on Rails 5的图像相关的知识,希望对你有一定的参考价值。
我正在尝试为我的图像重型网站安装https://github.com/jassa/lazyload-rails。
添加所需的lazy:true时,图像不显示
Ruby on Rails 5的语法需要不同吗?
<%= link_to image_tag(post.image_url.to_s, lazy: true), post_path(post), remote: true %>
谢谢
的Gemfile
gem "lazyload-rails"
application.html.erb
<script>
$("img").lazyload();
</script>
答案
你必须下载jQuery Lazy Load Plugin脚本并将其放在vendor/assets/javascripts
下
以上是关于lazy:对于Lazyload图像gem来说,它会破坏Ruby on Rails 5的图像的主要内容,如果未能解决你的问题,请参考以下文章
使用 vant 的 v-lazy 实现图片 vue 在移动端的懒加载