我想获得用户选择的付款方式。我尝试过使用
{{ transaction.gateway }}
如Shopify Liquid Documentation所述。但我不知道为什么价值是空的。下面是我添加的小代码片段
Admin->Settings->Checkout->Additional content and scripts
<script type="text/javascript">
var temp = " {{ shipping_method.title }} ";
var temp1 = "{{ transaction.gateway }}";
alert(temp);
alert(temp1);
有人可以帮助我吗?