- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 Paypals Node SDK 按照他们的示例代码进行支付重定向:
router.post('/', (req,res,next) => {
//create a payment:
var payReq = JSON.stringify({
intent:'sale',
payer:{
payment_method:'paypal'
},
redirect_urls:{
return_url:'http://localhost:3000/pay/payment', // this is where they get redirected after paying.
cancel_url:'http://localhost:3000/'
},
transactions:[{
amount:{
total: req.headers.amount,
currency:'AUD'
},
description:'eventID: ' + req.headers.eventid + ' userID: ' + req.headers.userid
}]
});
paypal.payment.create(payReq, (error, payment) => {
var links = {};
if(error){
console.log('something went wrong with paypal');
console.error(JSON.stringify(error));
} else {
// Capture HATEOAS links
payment.links.forEach(function(linkObj){
links[linkObj.rel] = {
href: linkObj.href,
method: linkObj.method
};
})
// If redirect url present, redirect user
if (links.hasOwnProperty('approval_url')){
//REDIRECT USER TO links['approval_url'].href
console.log('redirecting to ' + JSON.stringify(links['approval_url']));
var redirectUrl = JSON.stringify(links['approval_url'].href);
res.redirect(301, redirectUrl);
} else {
console.error('no redirect URI present');
}
}
});
});
Paypal 的授权有效,他们以 JSON 格式向我发送此信息,我将其用作重定向路由,该路由从上面的语句中被控制台记录:
redirecting to {"href":"https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-The-token-goes-here","method":"REDIRECT"}
但是在我执行 res.redirect 之后,我的浏览器控制台立即吐出这个错误并且没有发生重定向,它指向我的 vendor.ca6865e 中的这段代码….bundle.js:1787:
t.prototype.json=function(){return"string"==typeof this._body?JSON.parse(this._body):this._body instanceof ArrayBuffer?JSON.parse(this.text()):this._body},t.prototype.text=function(){return this._body instanceof i.a?this._body.toString():this._body instanceof ArrayBuffer?String.fromCharCode.apply....
Unexpected token < in JSON at position 0
at JSON.parse (<anonymous>)
at e.t.json (vendor.ca6865e….bundle.js:1787)
at e.project (main.c0aa810….bundle.js:1)
at e._next (vendor.ca6865e….bundle.js:474)
at e.next (vendor.ca6865e….bundle.js:1)
at XMLHttpRequest.h (vendor.ca6865e….bundle.js:1780)
at t.invokeTask (vendor.ca6865e….bundle.js:2950)
at Object.onInvokeTask (vendor.ca6865e….bundle.js:854)
at t.invokeTask (vendor.ca6865e….bundle.js:2950)
at e.runTask (vendor.ca6865e….bundle.js:2950)
at XMLHttpRequest.invoke (vendor.ca6865e….bundle.js:2950)
ORIGINAL STACKTRACE:
t.handleError @ vendor.ca6865e….bundle.js:1640
next @ vendor.ca6865e….bundle.js:1068
e.object.i @ vendor.ca6865e….bundle.js:1117
e.__tryOrUnsub @ vendor.ca6865e….bundle.js:1
e.next @ vendor.ca6865e….bundle.js:1
e._next @ vendor.ca6865e….bundle.js:1
e.next @ vendor.ca6865e….bundle.js:1
e.next @ vendor.ca6865e….bundle.js:35
e.emit @ vendor.ca6865e….bundle.js:1117
t.triggerError @ vendor.ca6865e….bundle.js:854
onHandleError @ vendor.ca6865e….bundle.js:854
t.handleError @ vendor.ca6865e….bundle.js:2950
e.runTask @ vendor.ca6865e….bundle.js:2950
invoke @ vendor.ca6865e….bundle.js:2950
SyntaxError: Unexpected token < in JSON at position 0
at JSON.parse (<anonymous>)
at e.t.json (vendor.ca6865e….bundle.js:1787)
at e.project (main.c0aa810….bundle.js:1)
at e._next (vendor.ca6865e….bundle.js:474)
at e.next (vendor.ca6865e….bundle.js:1)
at XMLHttpRequest.h (vendor.ca6865e….bundle.js:1780)
at t.invokeTask (vendor.ca6865e….bundle.js:2950)
at Object.onInvokeTask (vendor.ca6865e….bundle.js:854)
at t.invokeTask (vendor.ca6865e….bundle.js:2950)
at e.runTask (vendor.ca6865e….bundle.js:2950)
at XMLHttpRequest.invoke (vendor.ca6865e….bundle.js:2950)
最佳答案
Derp,是 JSON.stringify 破坏了它。事实证明这是没有必要的。
关于node.js - Express 服务器、paypal 结帐、res.redirect 和 Uncaught SyntaxError : Unexpected token < in JSON at position 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42221417/
我在 Python 2 中尝试了这段代码: def NewFunction(): return '£' 但我收到一条错误消息: SyntaxError: Non-ASCII character
我正在学习xpath,并且我正尝试从html usint xpath获取一些数据 我发现谷歌浏览器可以选择“复制xpath”,效果很好 但不适用于这个例子 some divs
我是 ruby 的初学者。我想修复其中一个邮件软件中的错误。我应用的修复代码如下: @headers[:recipient] = { "To" => (cc.map do |p|
我是初学者级别的python用户,当我在终端中键入以下内容时: $ pydoc Inleesgenbank.py 我收到以下错误消息: ./Inleesgenbank.py中的问题-:语法无效(Inl
我正在编写用于解析电子邮件的脚本,但是以下部分的for循环上有一些SyntaxError: def main(): writer = csv.DictWriter(open('feature
我正在尝试在python33中创建分发文件,但没有成功。 我用嵌套器名称创建了一个文件夹,并在Windows 8的C驱动程序中放入了python33。 此文件夹有2个文件。 nester.py和set
当我尝试导入NumPy时,突然出现以下错误: 更具体地说,它在我键入时显示: import numpy as np 要不就: import numpy 它也会在Python控制台中发生,如下所示: P
在我的 HTML 文件中,我有一行(如下)通过 WiFi 从设备获取响应并使数据可用于我的 JavaScript,它运行良好,除非响应文本中有错误并停止。 响应是一个代表 JavaScript 变量的
我开始使用 Javascript OOP,我编写了我的第一个类,但我在控制台中收到消息错误 这是类(class): class Quote{ deleteQuote(callback){ $(
我正在使用argparse来解析参数,但是当我得到args.global时,出现了一个奇怪的错误,我不知道我哪里做错了 ... parser.add_argument('-u','--update',
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在使用argparse来解析参数,但是当我得到args.global时,出现了一个奇怪的错误,我不知道我哪里做错了 ... parser.add_argument('-u','--update',
有什么不同?为什么它会在函数 a() 中出错? function a(){ 1 == 1 ? return true: ""; // Uncaught SyntaxError: Unexpe
我有一个 python 脚本,其中包含如下函数参数的类型声明: def dump_var(v: Variable, name: str = None): 据我所知,这是一个为函数设置输入参数类型的有效
我正在尝试从命令行运行 Python 脚本,这是我的脚本: import sys def printsomething(sys.argv): text = str(sys.argv[1])
我在 macbook 上使用终端将数据打印到打开的文件中: >>> out=open("test_output.txt","w") >>> print("hello",file=out) File
我想排除以下代码产生的错误,但我不知道如何。 from datetime import datetime try: date = datetime(2009, 12a, 31) except:
我想在动态生成的列表中放置一个 onclick 事件。我不能按原样使用它,例如 updateRoomID(arg) ,因为它会立即开火。所以我把它放在一个匿名函数中,按照网上各种来源的建议:funct
我有以下脚本: 测试.py: import sys try: import random print random.random() except: print sys.exc
这个问题在这里已经有了答案: "+=" causing SyntaxError in Python (6 个答案) 关闭 3 年前。 在我的代码中有这些行: if numVotes == 0:
我是一名优秀的程序员,十分优秀!