1

Expressサーバーのクロスドメインからデータをプルするためのgreasmonkeyscriptに取り組んでいます。(ここで通常のhtmlサイトで機能するコードを見つけました:)

これをGreasemonkeyで機能させることができますか?(多分unsafeWindowで?)

app.js:

var express = require("express");
var app = express();
var fs=require('fs');
  var stringforfirefox = 'hi buddy!'



// in the express app for crossDomainServer.com
app.get('/getJSONPResponse', function(req, res) {

    res.writeHead(200, {'Content-Type': 'application/javascript'});
    res.end("__parseJSONPResponse(" + JSON.stringify( stringforfirefox) + ");");
});
app.listen(8001)

グリースモンキースクリプト:

// ==UserScript==
// @name          greasemonkeytestscript
// @namespace     http://www.example.com/
// @description   jQuery test script
// @include       *
// @require       http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js

// ==/UserScript==


function __parseJSONPResponse(data) {    alert(data); }       // ??????????

document.onkeypress = function keypressed(e){

    if (e.keyCode == 112) {
        var script = document.createElement('script');
        script.src = 'http://localhost:8001/getJSONPResponse';
        document.body.appendChild(script); // triggers a GET request
        alert(script);



    }
}
4

1 に答える 1

1

これまでExpressを使用したことはありませんが、そのアプリは次のようなコードを返しているようです。

__parseJSONPResponse("\"hi buddy!\"");

target-page scope 内<script>のノードに配置されます。

これは、Greasemonkey スクリプトも__parseJSONPResponse関数をターゲット ページ スコープに配置する必要があることを意味します。

それを行う1つの方法は次のとおりです。

unsafeWindow.__parseJSONPResponse = function (data) {
    alert (data);
}


ただし、Express アプリを制御しているようです。それが本当なら、この種のことに JSONP を使用しないでください。GM_xmlhttpRequest()を使用します。

app.js次のようになる可能性があります。

var express             = require ("express");
var app                 = express ();
var fs                  = require ('fs');
var stringforfirefox    = 'hi buddy!'

app.get ('/getJSONPResponse', function (req, res) {

    res.send (JSON.stringify (stringforfirefox) );
} );

app.listen (8001)


GM スクリプトは次のようになります。

// ==UserScript==
// @name        greasemonkeytestscript
// @namespace   http://www.example.com/
// @description jQuery test script
// @include     *
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant       GM_xmlhttpRequest
// ==/UserScript==

document.onkeypress = function keypressed (e){

    if (e.keyCode == 112) {
        GM_xmlhttpRequest ( {
            method:     'GET',
            url:        'http://localhost:8001/getJSONPResponse',
            onload:     function (respDetails) {
                            alert (respDetails.responseText);
                        }
        } );
    }
}
于 2013-03-02T23:50:19.777 に答える