ajax 呼び出しを含む関数があります。
function example(param, callback) {
$.ajax({
type: "GET",
url: param,
contentType: "application/json; charset=utf-8",
dataType: "jsonp",
success: function(data) {
// do something with data
callback(data);
}
});
}
私はそれを次のように呼びます:
example("http://www.example.com", function(result) {
// do something with result
})
しかしexample()
、私はこのコンテキストで使用したいと思います:
text.replace(/[regex not shown]/g, function(){
return RegExp.$1 + example(RegExp.$2); // does not work
});
つまり、正規表現は複数の一致を検出し、それに を追加しexample([whatever it matched])
ます。統合する方法はありますか
example("http://www.example.com", function(result) {
// do something with result
})
にtext.replace()
?
前もって感謝します!