如何在我的application.js中获得此代码,以便可以预编译此处使用的图像?我应该使用哪种Rails助手?

    $(document).ready(function(){
    $(".imgthumb").click(function(){
        $(".thumbnailcurrent").addClass("thumbnails");
        $(".thumbnails").removeClass("thumbnailcurrent");
        $(this).addClass("thumbnailcurrent");
        $(this).removeClass("thumbnails");

        var img=($(this).attr("data-id"));

        if (img==1) {

         $('.imgbig').html("<%= asset_path src: 'flappy1.jpg', height: '275', width: '391' %>");
        } else if (img==2) {

         $('.imgbig').html("<%= asset_path src: 'flappy2.jpg', height: '275', width: '391' %>");
        } else if (img==3) {

         $('.imgbig').html("<%= asset_path src: 'flappy3.jpg', height: '275', width: '391' %>");
        }


});

    });

最佳答案

位于公共/资产路径中的预编译图像?为什么不直接使用此路径?

关于javascript - 预编译application.js Assets ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22264137/

10-11 11:16