我正在尝试使用ASP .NET C#实施Stripe Payment。我正在使用Example5作为示例。
由于某些原因,“卡片”字段显示不正确,并且不可编辑(请参见下图)
在调试它时,它给我一个错误“条带未定义”,它在第4行中
var elements = stripe.elements();
StripePayment.cshtml
<script src="https://js.stripe.com/v3/"></script>
<script src="~/Scripts/stripepayment.js" data-rel-js></script>
<script src="~/Scripts/stripe.validation.js" data-rel-js></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="~/Content/stripe-base.css" data-rel-css="" />
<link rel="stylesheet" type="text/css" href="~/Content/stripe-design.css" data-rel-css="" />
关于为什么会这样的任何想法?谢谢!