My question is, is it possible to do access the variables in Shopify Liquid using Javascript?
{% assign my_array= "apples, oranges, peaches, tomatoes" | split: ", " %}
function my_function(number){
return "{{my_array[number]}}";
}
$('#click_me').click(function(){
alert(my_function(0));
});
I know this is possible with AJAX and PHP, but is there a similar way I can implement using Shopify Liquid and JQuery alone?
2
Answers
Liquid is a back-end tempalting language, this means that it’s rendered before the Javascript. It means that once the liquid rendering is done you won’t have access to the liquid logic and since the JS is rendered AFTER the liquid it means that you can’t access it at all.
So you can’t pass JS variables to liquid in real time.
But you can create a JS object with liquid:
You can use AJAX to get specific page, but from your example this will do you no good, since you are trying to access a liquid variable on a Javascript event, which is not possible.
You can set up an alternate layout, such as
product.json.liquid
which you can then access via an AJAX request, something like:Your
product.json.liquid
file might look something like this (note the layout none tag – important to receive unaltered json):See more info here: https://www.shopify.com/partners/blog/84342470-the-power-of-alternate-layout-files-in-shopify-theme-development