问题所在。我目前可以访问静态网站。我使用MVC和节点构建了一个web-api,它根据我传递的ID发回数据。
http://10.10.10.10:5000/api/Blueprint/191 (where 191 was the id)
这通常会在查看数据库表后返回JSON字符串[JSON]。该表可以是1000条记录。
我可以通过从a返回文件来模仿这种相同的行为 静态网站?所以文件将是" Blueprint / 191.json"例如。这些文件将静态保存在Web服务器上。
思想?
答案 0 :(得分:0)
> <?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
header("Access-Control-Allow-Origin: *");
header('Content-type: application/json');
/* @var $_GET type */
$typeid = $_GET['typeid'];
$data = file_get_contents($typeid.".json");
echo $data;