1

でのプロキシ ソリューションの使用に疲れました

Origin http://localhost は Access-Control-Allow-Origin で許可されていません。

そして、私が持っているファイルproxy.phpで

<?php
// File Name: proxy.php
if (!isset($_GET['url'])) die();
$url = urldecode($_GET['url']);
$url = 'http://' . str_replace('http://', '', $url); // Avoid accessing the file system
echo file_get_contents($url);

主に私が持っている

<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<script src="proxy.php"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-                1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
<script type="text/javascript"     src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
$.ajax({
url:"proxy.php?url=theurlofmyapi",
type:'GET',
dataType:"json",
success:function(data){console.log(data.results.result[1].category);}
});</script>
</head>

<body>
<div data-role="header"> 
<h1>Upcoming Movies</h1> 
</div> 
<ul id= "data" data-role="listview">
<li><img src="http://content8.flixster.com/movie/11/17/20/11172082_mob.jpg"         class="ui-li-thumb"><h3 class="ui-li-heading">Warning</h3><p class="ui-li-desc">hot</p>                           </li>
<li><a href="javascript:alert('hi')">Audi</a></li>
<li><a href="bmw.html">BMW</a></li>
</ul></body></html>

Google chrome のローカルホストで main.html を呼び出すと、コンソールに php の最初の行でエラーが表示されます。何が問題なのかわからない。エラー メッセージは次のとおりです。Uncaught SyntaxError: Unexpected token <


registrationあなたはあなたにパッケージを追加するのを忘れたかもしれませんpython sys path

import sys
sys.path.append('/your_path')
4

1 に答える 1

2

HTML から次の行を削除するだけです。

<script src="proxy.php"></script>
于 2013-08-31T05:45:26.393 に答える