我對Web開發瞭解不多,並且正在努力構建簡單的搜索頁面。所有搜索引擎編碼都是功能性的,並且將通過REST API進行調用。使用REST API搜索輸入的文本(HTML + PHP)
我的HTML網頁是這一個:
<div>
<div>
<input id="search_query" type="text" placeholder="Insert the text" />
</div>
<div><button id="search" type="submit">Go</button></div>
</div>
<div id="results"> </div>
而且PHP調用像這樣做:
<?php
require_once 'unirest-php/lib/Unirest.php';
$response = Unirest\Request::post(
"MY_URL",
array(
"X-Domino-Api-Key" => "MY_API_KEY",
"Content-Type" => "application/json"
),
json_encode(array("parameters" => [ "THE_QUERY" ]))
);
print_r($response->code);
print_r($response->headers);
print_r($response->body);
?>
我就死在如何將其鏈接,如何從得到查詢輸入以及如何將結果放在正確的位置。
也許這很容易,但我真的沒有web開發經驗,所以我希望能夠保持簡單的解決方案。
謝謝!
哪來正確的地方? –
它將在div「結果」 – David