更改 return 获取目录
change return fetch directory
我试图理解为什么我不能将 return 获取目录更改为我的 /home
目录而不是 tahn public_html
:
<script src="https://www.paypal.com/sdk/js?client-id=test¤cy=USD"></script>
<script>
// Render the PayPal button into #paypal-button-container
paypal.Buttons({
// Call your server to set up the transaction
createOrder: function(data, actions) {
return fetch('/home/mysite/public_html/checkfetch.php, {
method: 'post'
}).then(function(res) {
return res.json();
}).then(function(orderData) {
return orderData.id;
});
},
当我像上面那样制作时它可以工作但是我需要的不是/home/mysite/public_html/checkfetch.php
而是/home/checkfetch.php
这是在哪里托管的?在该主机上的 Web 浏览器中可以访问的任何内容(不是本地文件路径)都可以用于获取。在您的服务器上建立有效的路由路径,并使用它们。没有别的。
public_html
是包含在网络路径中的异常内容。通常这样的文件夹表示 Web 路径开始的文件系统根目录。
我试图理解为什么我不能将 return 获取目录更改为我的 /home
目录而不是 tahn public_html
:
<script src="https://www.paypal.com/sdk/js?client-id=test¤cy=USD"></script>
<script>
// Render the PayPal button into #paypal-button-container
paypal.Buttons({
// Call your server to set up the transaction
createOrder: function(data, actions) {
return fetch('/home/mysite/public_html/checkfetch.php, {
method: 'post'
}).then(function(res) {
return res.json();
}).then(function(orderData) {
return orderData.id;
});
},
当我像上面那样制作时它可以工作但是我需要的不是/home/mysite/public_html/checkfetch.php
而是/home/checkfetch.php
这是在哪里托管的?在该主机上的 Web 浏览器中可以访问的任何内容(不是本地文件路径)都可以用于获取。在您的服务器上建立有效的路由路径,并使用它们。没有别的。
public_html
是包含在网络路径中的异常内容。通常这样的文件夹表示 Web 路径开始的文件系统根目录。