私はプロキシを実行しているので、urlパラメータを使用してデータに対してajaxリクエストを実行できます。私は以下のようにパラメータを追加して終わるAjaxでのプロキシ当たっていプロキシ経由でurlプロパティを渡す
<?php
header('Content-type: application/xml');
$daurl = 'http://thesite.com/form.asp';
$handle = fopen($daurl, "r");
if ($handle) {
while (!feof($handle)) {
$buffer = fgets($handle, 4096);
echo $buffer;
}
fclose($handle);
}
?>
:プロキシPHPは次のようになりますか?その要求はサンドボックス/ proxy.phpのようなものです
$j.ajax({
type: 'GET',
url: 'sandbox/proxy.php',
data: 'order=' + ordervalue,
dataType: 'html',
success: function(response) {
$j("#result").html(response);
}
});
を順= 123
私はそのデータ(注文= 123)を取得し、$ daurl変数(http://thesite.com/form.asp?order=123)に追加して、プロキシに実際に何かを返すことができますか?
あなたは過説明することはできませんので、これは次のようにあなたが$ daurlを変えることができるので、順序= 123が含まれている必要があります)=私のため
素晴らしい!どうもありがとうございます。 – Zac