我正在嘗試將Braintree Payments嵌入式嵌入到Ionic移動應用程序中。基於布倫特裏文檔和一些代碼示例我能在網上找到的,下面的代碼是什麼我已經設法拿出這麼遠,但它似乎沒有工作:Braintree在Ionic中嵌入式容器
controller.js
.controller('CheckoutForm', function($scope, $window) {
$scope.clientToken = "<token generated by the server>"
$scope.renderCheckout = function() {
braintree.setup($scope.clientToken, "dropin", {
container: "payment-form"
});
}
})
template.html
<div>
Payment details:
<form id="checkout">
<div id="payment-form" onLoad="renderCheckout()"></div>
</form>
</div>
我也包括在index.html中的下列行:
<script src="https://js.braintreegateway.com/js/braintree-2.23.0.min.js"></script>
我對Ionic和HTML5/JS開發一般都很陌生,所以任何幫助都會很感激。
似乎已經奏效!感謝您的幫助 – whtvr
感謝您使用cordova白名單插件。這可以使用braintree插件的導入模塊嗎?或者這是嚴格使用cordova braintree插件嗎? –