0

假设我有这些文件

正常.R

//plot normal distribution from userData
//save image to disk
//return json with filename

控制器.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 中提供的方式与 html 中的 R 进行交互。我只是想将 json 提供给 R 并从 R 获取 json。webhoster 不支持 Exec 脚本。我还查看了http://cran.r-project.org/doc/FAQ/R-FAQ.html#R-Web-Interfaces但这似乎满足了我的需求。

任何人都可以提供一个简单的解决方案吗?

4

0 回答 0