class BlogController < ApplicationController
def index
@page_title = 'Blog'
set_meta_tags og: {
title: 'Blog ',
image: ActionController::Base.helpers.asset_path(my_path)
}
@posts = Post.all.order('created_at DESC')
render layout: "layouts/blog"
end
end
我正在使用&#34;元标记&#34;宝石,想要在页面上传递不同的图像。我的问题是我可以得到图像,但我丢失了基本网址。我该怎么解决?