文件说
CamanJS 带有一个 PHP 代理(欢迎您以您选择的语言添加代理),您可以在代理文件夹中使用它。在使用 CamanJS 进行编辑之前,启用代理所需要做的就是:
// Will use the PHP proxy in the proxies folder.
Caman.remoteProxy = Caman.IO.useProxy('php');
// You can also specify a URL instead of calling useProxy().
// This will call /proxies/proxy.php?camanProxyUrl={url}
Caman.remoteProxy = "/proxies/proxy.php";
阅读后我写了以下代码
<script>
Caman.remoteProxy = Caman.IO.useProxy('php');
more javaScript here.
</script>
浏览器出于安全原因却说无法编辑。我写错了吗?我是否必须在某处包含一个 php 文件。那个PHP文件在哪里?