2016-05-06 106 views
0

我有一個Grease Monkey腳本,它基本上收集遊戲中的信息並將其發送到我的服務器以跟蹤我們團隊的進度。這涉及我的GM腳本和遊戲之間的不少Ajax請求,然後向服務器發送一個大型轉儲。在從遊戲收集數據期間,似乎有一個或多個請求結果格式不正確的JSON。我已經打印到控制檯,它似乎是一個字符串,而不是一個對象。我嘗試了一些快速JSON.parse(JSON.stringify(r)),但拋出了unexpected end of data錯誤。經過一番研究,我想出了下面的函數來處理Ajax響應,但記錄的「對象」仍然是一個字符串,並且仍然導致腳本的其餘部分失敗。從第三方服務器解析json問題

function(r){ 
    if(typeof r === 'object'){ 
     result = r; 
    }else if(typeof r === 'string'){ 
     r.trim(); 
     if(r.charAt(0) == '"'){ 
      fNQ = r.indexOf('"') + 1; 
      lNQ = r.lastIndexOf('"'); 
      r = r.substring(fNQ, lNQ); 
      r = r.trim(); 
     } 
     uW.console.log(r); 
     result = r; 
    } 
    if(!result){ 
     result = r; 
    } 
} 

如何確保第三方的Ajax響應已正確格式化爲JSON供腳本的其餘部分使用?

編輯 - 下面是這似乎觸發我的錯誤響應:

" 







{"ok":true,"currentPage":1,"noOfPages":119,"otherAlliances":[{"allianceId":2090,"description":"Everyone has a Voice. Everyone is Equal. No Wild attacks other than that, treat other members with respect in chat, be active, nothing else but having fun your way!!!","membersCount":"77","name":"Rebels Forever","founderUserId":"18985927","might":"4003992566340","glory":"4439079","ranking":1,"hostUserId":"19002651","host":"Greywolf","hostGenderAndName":"Lord Greywolf","founderName":"GreywolfII","founderGenderAndName":"Lord GreywolfII"},{"allianceId":4428,"description":"When the world isnt what you thought. Things are not what they seemed. Phuck it take two of these mix with Alcohol and feel better in the morning.","membersCount":"92","name":"Phuckitol","founderUserId":"450033","might":"3070673000317","glory":"808848","ranking":2,"hostUserId":"450033","host":"Steelman","hostGenderAndName":"Lord Steelman","founderName":"Steelman","founderGenderAndName":"Lord Steelman"},{"allianceId":3253,"description":"Play as you like with the backing of your family. We fight as one and defend as one. Gem prizes will be handed out. Important to have fun and enjoy the game. Zilla","membersCount":"46","name":"Burn In Ashes","founderUserId":"3359434","might":"2596318711111","glory":"1914207","ranking":3,"hostUserId":"12858988","host":"gaz","hostGenderAndName":"Lord gaz","founderName":"Real'Savage","founderGenderAndName":"Lord Real'Savage"},{"allianceId":3262,"description":"Come join us and work as a team to fight and win :)","membersCount":"86","name":"Rise of Legends","founderUserId":"15149877","might":"2379467424780","glory":"2237089","ranking":4,"hostUserId":"15149877","host":"BRETT","hostGenderAndName":"Lord BRETT","founderName":"BRETT","founderGenderAndName":"Lord BRETT"},{"allianceId":3215,"description":":) zero drama tolerance, a place to fight and have fun. Is suppose to be a game after all","membersCount":"67","name":"trouble makers","founderUserId":"1887356","might":"2348999870474","glory":"2428809","ranking":5,"hostUserId":"11564038","host":"Dem0","hostGenderAndName":"Lord Dem0","founderName":"'Echo'","founderGenderAndName":"Lady 'Echo'"},{"allianceId":4924,"description":"","membersCount":"52","name":"WDW","founderUserId":"11577054","might":"2271325408341","glory":"2996503","ranking":6,"hostUserId":"11577054","host":"Nordic","hostGenderAndName":"Lord Nordic","founderName":"Nordic","founderGenderAndName":"Lord Nordic"},{"allianceId":2792,"description":"Name says it all :)","membersCount":"80","name":"Wicked MisFits","founderUserId":"18718109","might":"1984311364223","glory":"2303516","ranking":7,"hostUserId":"18718109","host":"Of_Sin","hostGenderAndName":"Lord Of_Sin","founderName":"Of_Sin","founderGenderAndName":"Lord Of_Sin"},{"allianceId":3881,"description":"","membersCount":"55","name":"LA MEUTE","founderUserId":"14440588","might":"1807184812409","glory":"862782","ranking":8,"hostUserId":"15336296","host":"lepoison","hostGenderAndName":"Lord lepoison","founderName":"LouvePoison","founderGenderAndName":"Lady LouvePoison"},{"allianceId":3273,"description":"Italians do it better.","membersCount":"80","name":"MADE in ITALY","founderUserId":"18656989","might":"1799034994799","glory":"718309","ranking":9,"hostUserId":"19009341","host":"Super_Bicio","hostGenderAndName":"Lord Super_Bicio","founderName":"Leonida","founderGenderAndName":"Lord Leonida"},{"allianceId":5283,"description":"Fight and have fun!","membersCount":"26","name":"War Crimes","founderUserId":"15105685","might":"1599775320583","glory":"6732908","ranking":10,"hostUserId":"15105685","host":"Hillz","hostGenderAndName":"Lady Hillz","founderName":"Hillz","founderGenderAndName":"Lady Hillz"}]}" 
+1

你可以發佈一個示例響應json嗎? – yelsayed

+0

@YasserElsayed使用問題 – chaoskreator

回答

1

您試圖在將字符串再次字符串化後解析字符串。刪除額外的JSON.stringify,否則你會以額外的引號結束。

+0

中的json響應更新了問題您是正確的,它禁止了腳本。經與調試我現在已經到位的腳本進一步的操作,我發現,最終的反應之一也使腳本崩潰實際上是一些代碼服務器發送的:「」 (function(){return eval(unescape(「%76%61%72%20%73%20%3d%20%6e%65%77%20%44%61%74%65%28%29%3b %20%3B%20%64%1207%20%7B%20%3B%20%7D%20%77%68%69%圖6c%65%28%28%6E%65%77%20%44%61 %74%65%28%29%29%20%2d%20%73%20%3c%20%32%30%31%38%29%3b「));})()」'​​ – chaoskreator

+0

@chaoskreator代碼似乎創建了2018毫秒的循環,出於某種原因。它似乎有點奇怪,它隱藏在'unescape' *和* eval'後面。 – Jaketr00

+0

@ Jaketr00是的,我沒有轉過身,看到奇怪的數字,並想知道它可能是什麼。我唯一能想到的就是限制對服務器的請求。 – chaoskreator

0

工作正常,我用的模板字符串。

var response = `{"ok":true,"currentPage":1,"noOfPages":119,"otherAlliances":[{"allianceId":2090,"description":"Everyone has a Voice. Everyone is Equal. No Wild attacks other than that, treat other members with respect in chat, be active, nothing else but having fun your way!!!","membersCount":"77","name":"Rebels Forever","founderUserId":"18985927","might":"4003992566340","glory":"4439079","ranking":1,"hostUserId":"19002651","host":"Greywolf","hostGenderAndName":"Lord Greywolf","founderName":"GreywolfII","founderGenderAndName":"Lord GreywolfII"},{"allianceId":4428,"description":"When the world isnt what you thought. Things are not what they seemed. Phuck it take two of these mix with Alcohol and feel better in the morning.","membersCount":"92","name":"Phuckitol","founderUserId":"450033","might":"3070673000317","glory":"808848","ranking":2,"hostUserId":"450033","host":"Steelman","hostGenderAndName":"Lord Steelman","founderName":"Steelman","founderGenderAndName":"Lord Steelman"},{"allianceId":3253,"description":"Play as you like with the backing of your family. We fight as one and defend as one. Gem prizes will be handed out. Important to have fun and enjoy the game. Zilla","membersCount":"46","name":"Burn In Ashes","founderUserId":"3359434","might":"2596318711111","glory":"1914207","ranking":3,"hostUserId":"12858988","host":"gaz","hostGenderAndName":"Lord gaz","founderName":"Real'Savage","founderGenderAndName":"Lord Real'Savage"},{"allianceId":3262,"description":"Come join us and work as a team to fight and win :)","membersCount":"86","name":"Rise of Legends","founderUserId":"15149877","might":"2379467424780","glory":"2237089","ranking":4,"hostUserId":"15149877","host":"BRETT","hostGenderAndName":"Lord BRETT","founderName":"BRETT","founderGenderAndName":"Lord BRETT"},{"allianceId":3215,"description":":) zero drama tolerance, a place to fight and have fun. Is suppose to be a game after all","membersCount":"67","name":"trouble makers","founderUserId":"1887356","might":"2348999870474","glory":"2428809","ranking":5,"hostUserId":"11564038","host":"Dem0","hostGenderAndName":"Lord Dem0","founderName":"'Echo'","founderGenderAndName":"Lady 'Echo'"},{"allianceId":4924,"description":"","membersCount":"52","name":"WDW","founderUserId":"11577054","might":"2271325408341","glory":"2996503","ranking":6,"hostUserId":"11577054","host":"Nordic","hostGenderAndName":"Lord Nordic","founderName":"Nordic","founderGenderAndName":"Lord Nordic"},{"allianceId":2792,"description":"Name says it all :)","membersCount":"80","name":"Wicked MisFits","founderUserId":"18718109","might":"1984311364223","glory":"2303516","ranking":7,"hostUserId":"18718109","host":"Of_Sin","hostGenderAndName":"Lord Of_Sin","founderName":"Of_Sin","founderGenderAndName":"Lord Of_Sin"},{"allianceId":3881,"description":"","membersCount":"55","name":"LA MEUTE","founderUserId":"14440588","might":"1807184812409","glory":"862782","ranking":8,"hostUserId":"15336296","host":"lepoison","hostGenderAndName":"Lord lepoison","founderName":"LouvePoison","founderGenderAndName":"Lady LouvePoison"},{"allianceId":3273,"description":"Italians do it better.","membersCount":"80","name":"MADE in ITALY","founderUserId":"18656989","might":"1799034994799","glory":"718309","ranking":9,"hostUserId":"19009341","host":"Super_Bicio","hostGenderAndName":"Lord Super_Bicio","founderName":"Leonida","founderGenderAndName":"Lord Leonida"},{"allianceId":5283,"description":"Fight and have fun!","membersCount":"26","name":"War Crimes","founderUserId":"15105685","might":"1599775320583","glory":"6732908","ranking":10,"hostUserId":"15105685","host":"Hillz","hostGenderAndName":"Lady Hillz","founderName":"Hillz","founderGenderAndName":"Lady Hillz"}]}` 

var data = JSON.parse(response) 
console.log(data)