Authorize.net确实有Accep.js的API版本,可以使用Accept.dispatchDataWithApiResponse()实现与Accept.dispatchData()相同的功能。以下是示例代码:
//引入Authorize.net的Accept.js脚本
//定义secureData和responseHandler var secureData = "..." //使用Accept.js生成的加密数据 var responseHandler = function(response) { //处理响应数据 }
//通过Accept.dispatchDataWithApiResponse()发送请求 Accept.dispatchDataWithApiResponse(secureData, responseHandler);