this.on('success', function(file, responseText) {
var theID = JSON.stringify(responseText);
alert(theID);
window.location.href = ('want to put something here');
});
警报给了我:
{“消息”:“成功”,“文件ID”:399}
我想获取fileID值,在这种情况下为399。
谢谢。
最佳答案
只是
window.location.href = responseText.fileID;
会做,因为responseText已经是JSON
关于javascript - 如何获取JSON字符串的一部分?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36832445/