简体   繁体   中英

link_to in liquid template

I am new in Ruby on rails and facing issue while creating link_to using Liquid gem. I want to create a link in the email template like:

{{link_to 'Submit', profile_accounts_url(:account_id => account.id)}} 

However, link is not created in email template. Please help me. Thanks in advance.

I didn't use liquied before, but you can check the syntax for link_to here.

using Liquid variables inside of a liquid tag call

http://richonrails.com/articles/liquid-templating-engine

However, I think you're using rails' syntax for link_to instead of liquid's syntax. Maybe you should just use something like:

<%= link_to "Submit", profile_accounts_path(account) %>

which will redirect to the show page.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM