douxiong1994 2019-07-06 20:07
浏览 158
已采纳

在wordpress中显示来自api的数据

I have an a rest api, it has medicines and information about each medicine.

api/v1/medicine/ Returns this

{
    "success": true,
    "data": [
        {
            "medicineId": 12,
            "medicineName": "Abacavir"
        },
        {
            "medicineId": 10,
            "medicineName": "Alclometasone"
        },
        {
            "medicineId": 15,
            "medicineName": " Alectinib"
        },
        {
            "medicineId": 13,
            "medicineName": "Amiloxate"
        }

and api/v1/medicine/ID returns info about a medicine

{
    "success": true,
    "data": {
        "medicineId": 16,
        "medicineName": " Alendronic acid",
        "medicineDescription": "Alendronic acid is a bisphosphonate that is used for the treatment of some forms of osteoperosis and Paget's disease . It functions by preventing resorption of bone ",
        "sideEffects": "you may experience whilst taking alendronic acid are stomach pain, indigestion or acid reflux,flatulence or bloating, constipation or diarrhoea and muscle, joint or bone pain.",
        "chemicalFormula": "C4H13NO7P2",
        "indication": "Alendronic acid is indicated for the treatment and prevention of osteoporosis in men and postmenopausal women, treatment of glucocorticoid-induced osteoporosis, and Paget's disease of bone. However, alendronic acid is not indicated for use in pediatric populations or patients with a creatinine clearance <35mL/min.",
        "associatedCondition": "Osteogenesis Imperfecta
Osteoporosis
Osteoporosis caused by glucocorticoid
Paget's Disease",
        "alternatives": [],
        "categories": [
            "Agents Causing Muscle Toxicity",
            "Bone Density Conservation Agents",
            "Bisphosphonates"
        ]
    },
    "message": "Successfully retrieved"
}

I want to show a list a medicines and when i click on a medicine, it shows a popup with the info about that medicine All of that inside wordpress

I tried this

<?php
$age = file_get_contents('http://link/rest/v1/medicine/');
$array = json_decode($age, true);
$medicine_names = [];
foreach($array['data'] as $key=>$value)
{
 echo ($value['medicineName']). '<br/>' ;    
}
?>

Which lists the medicines

Any idea how i can achieve that in wordpress?

  • 写回答

1条回答 默认 最新

  • dongpu9481 2019-07-06 21:58
    关注

    maybe this help

    function getData(string $route): array
    {
        return json_decode(file_get_contents($route), true);
    }
    
    $medicineInfo = [];
    
    foreach(getData('http://148.251.195.245:8080/MediHelp/rest/v1/medicine/')['data'] as $medicine) {
        $medicineInfo[$medicine['medicineId']] = getData(
            sprintf('http://148.251.195.245:8080/MediHelp/rest/v1/medicine/%s', $medicine['medicineId'])
        )['data'];
    }
    
    //for example
    foreach($medicineInfo as $info): ?>
        <a href="#popup-for-<?= $info['medicineId'] ?>"><?= $info['medicineId'] ?></a>
        <!-- popup code -->
        <div id="#popup-for-<?= $info['medicineId'] ?>"><!-- ...$info... --></div>
    <?php endforeach ?>
    

    or use ajax for send data to popup

    another example

    foreach(getData('http://148.251.195.245:8080/MediHelp/rest/v1/medicine/')['data'] as $medicine) {
        $info = getData(
            sprintf('http://148.251.195.245:8080/MediHelp/rest/v1/medicine/%s', $medicine['medicineId'])
        )['data'];?>
    
        <a href="#popup-for-<?= $info['medicineId'] ?>"><?= $info['medicineId'] ?></a>
        <!-- popup code -->
        <div id="#popup-for-<?= $info['medicineId'] ?>"><!-- ...$info... --></div>
    <?php } ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型