我的 devoplment 机器上的 restcall 是这样的:
return $resource('http://127.0.0.1/projectname/index.php/api/pipedata/pipes/format/json', {}, {});
因为我的开发机器上有几个项目,所以我不能在 root 上安装它。
但在我的服务器上,我将它放在 root 上,所以正确的 url 是:
http://127.0.0.1/index.php/api/pipedata/pipes/format/json
“项目名称”被删除。
解决此问题的最佳做法是什么?在服务器端还是客户端?
我在服务器上有带有 codeigniter 的 php,在客户端上有 angular js。