#Vane - spinner
1 messages · Page 1 of 1 (latest)
Got it. For that example, I'm not sure exactly what it's supposed to look like but that does look a bit off
I can ask the team about it
I probably won't get an answer in time to get back to you though
Uh its fine
I'll create my own spinner
I do have another question though
const stripe = Stripe('pk');
async function init(){
const { clientSecret } = await fetch("scripts/payments.php", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(bucksAmt),
}).then((r) => r.json());
right now im posting only bucksAmt which is a number, how can I post more variables
yup
Oh that's not a stripe question but a JS question. We can't help much with that here as we only provide support with the Stripe API, but check here: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
thanks