如何存取使用PHP函數儲存的JS檔案中的值
P粉590929392
P粉590929392 2023-07-29 00:04:23
0
1
545
<p>我正在為WordPress中的聊天機器人建立一個自訂插件,其中我在JS檔案中編寫了一些邏輯來獲取API和回應。作為請求體,我正在發送兩個參數。其中一個參數使用PHP函數(我的核心插件檔案)儲存在wp資料庫中。所以我想在我的JS檔案中存取該函數/該值,以便在API請求中發送它。 </p><p>JS函式 -</p><p><br /></p> <pre class="brush:php;toolbar:false;">fetch('https://whatgpt.up.railway.app/api/query-train-gpt', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ query: userMessage, number: phoneNumber, }), })</pre> <p>後端的PHP函數 -</p> <pre class="brush:php;toolbar:false;">function get_admin_phone_number() { // Retrieve the stored admin phone number from the database. $admin_phone_number = get_option('admin_phone_number', ''); // Provide a default value if the option is not set. // Return the admin phone number. return $admin_phone_number; }</pre> <p><br /></p>
P粉590929392
P粉590929392

全部回覆(1)
P粉785957729

您可以將函數的輸出值設為$_SESSION['admin_phone_no'],然後在您的JS檔案中使用會話中的值。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板