让我说我有这些文件
normal.R
//plot normal distribution from userData
//save image to disk
//return json with filename
Controller.php这样
$functionId = $_GET['functionId']
switch($functionId){
case 1:
//call normal.R with $_POST['userData'] as json
break;
}
ajax.js
$.post('/controller.php?functionId=1,{post:userData},function(data){
//set the src of an specific image to the returned one in the json
})
正如您所看到的,我不需要在rApache中提供的方式与h中的R进行交互。 我只想将json提供给R并从R.获取json。执行脚本不受webhoster的支持。 我也调查了http://cran.r-project.org/doc/FAQ/R-FAQ.html#R-Web-Interfaces,但似乎对我的需求很大。
有人可以提供简单的解决方案吗?