我对为 Chrome/Firefox 编写用户脚本非常陌生。我试图从网站获取 AJAX 生成的 JSON 数据并将它们发送到我自己的服务器,以分析它们并将它们放入数据库中。
我设法使用 Ajax 发送数据并将它们放入我自己服务器上的文本文件中。但在 Chrome 控制台中,它说我有:
未捕获的 SyntaxError:意外的标记 j
,但我已经收到了每条消息,即“数据已发送”和“通话后”-这些是日志消息。
是否有一个回调,我应该实现,还是我遗漏了一些明显的东西?我将我的代码的缩短版本放在这里。
// Injecting javascript in the original page
function inject(func) {
var source = func.toString();
var script = document.createElement('script');
script.innerHTML = "(" + source + ")()";
document.body.appendChild(script);
}
function injection() {
}
// This function intercepts the ajax
function interceptAjax() {
$('body').ajaxSuccess (
function (event, requestData, settings) {
serverData = requestData.responseText;
if(JSON.parse(settings.data).method == "dashboard.getPaginatedPlextsV2"){
console.log("Sending");
$.ajax({
type: "POST",
url: "http://mywebsite.com/collectdata.php",
data: { json: JSON.stringify(serverData) },
success: function(msg) {
console.log("Data were sent");
},
error: function(xhr, ajaxOptions, thrownError) {
console.log("Failed: " + xhr.status + " - " + thrownError);
}
});
console.log("After the call");
}
}
);
}
// A helperfunction for the ajaxInterception to work in Chrome
function addJS_Node (text, s_URL, funcToRun) {
var D = document;
var scriptNode = D.createElement('script');
scriptNode.type = "text/javascript";
if(text) scriptNode.textContent = text;
if(s_URL) scriptNode.src = s_URL;
if(funcToRun) scriptNode.textContent = '(' + funcToRun.toString() + ')()';
var targ = D.getElementsByTagName('head')[0] || D.body || D.documentElement;
targ.appendChild(scriptNode);
}
// This function is necessary to intercept the ajax
addJS_Node(null, null, interceptAjax);
inject(injection);