简体   繁体   中英

Stripe with Vue.js

I'm trying to get Stripe working with Vue but am having some difficulties.

So, I'm importing it in the head of my html file:

<!--  STRIPE  -->
<script src="https://js.stripe.com/v3/"></script>

After a button is pressed, I run:

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

But I get a Stripe is not defined.

I also tried importing it from npm like Node.

import Stripe from 'stripe'

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

I don't get Stripe is not defined but I get a TypeError: stripe.redirectToCheckout is not a function

I'm trying to get Stripe working with Vue but am having some difficulties.

So, I'm importing it in the head of my html file:

<!--  STRIPE  -->
<script src="https://js.stripe.com/v3/"></script>

After a button is pressed, I run:

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

But I get a Stripe is not defined.

I also tried importing it from npm like Node.

import Stripe from 'stripe'

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

I don't get Stripe is not defined but I get a TypeError: stripe.redirectToCheckout is not a function

I'm trying to get Stripe working with Vue but am having some difficulties.

So, I'm importing it in the head of my html file:

<!--  STRIPE  -->
<script src="https://js.stripe.com/v3/"></script>

After a button is pressed, I run:

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

But I get a Stripe is not defined.

I also tried importing it from npm like Node.

import Stripe from 'stripe'

const stripe = Stripe('pk_test_xxxxxxxxxxxxxxxxxx');

stripe.redirectToCheckout({
    items: [{sku: 'sku_xxxxx', quantity: 1}],

    successUrl: 'http://localhost:5000/success',
    cancelUrl: 'http://localhost:5000/canceled',
})

I don't get Stripe is not defined but I get a TypeError: stripe.redirectToCheckout is not a function

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