我对 json 非常陌生,并且已经在这个问题上工作了大约一周。
我使用 php 从帐户列表中检索推文并将它们存储到 .txt 文件中
$cache = dirname(__FILE__) . '/../cache/twitter-json.txt';
$data = file_get_contents('http://api.twitter.com/1/lists/statuses.json? slug=widget&owner_screen_name=webcodepro&count=1&page=1&per_page=8&include_rts=true&include_entities=true');
$cachefile = fopen($cache, 'wb');
fwrite($cachefile,utf8_encode($data));
fclose($cachefile);
?>
架构师构建前端页面的方式是我需要将 json 值(我在 .txt 文件中拥有的)存储到 .js 文件中的 json 变量中并呈现它。
编辑:所以它已更改为
$cache =_ _DIR__.'/cached.txt';
$data = file_get_contents('http://api.twitter.com/1/lists/statuses.json? slug=widget&owner_screen_name=webcodepro&count=1&page=1&per_page=8&include_rts=true&include_entities=true');
file_put_contents($cache, $data);
该文件出现空。你们知道可能是什么问题吗?
是否可以将 .txt 文件的内容存储到 .js 文件中的 json 变量中?