DataTables + Stripe API

DataTables + Stripe API

DaveyJakeDaveyJake Posts: 5Questions: 3Answers: 0

Trying to use DataTables with the Stripe API and it keeps saying the _ inside the AJAX request is unknown via its parameter_unknown error. I've tried setting $.ajaxSetup({ cache: true }) inside my DataTables setup file but the underscore is still being passed in with the request. Any advice on how to fix this would be much appreciated.

Cheers,

Davey

Answers

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin

    Hi Davey,

    Try:

    ajax: {
      url: '...stripe.end.point...',
      cache: true
    }
    

    Allan

Sign In or Register to comment.