我在SugarCRM测试rest api。为了使用crm rest api,我补充道:
XMLHttpRequest cannot load http://test.crm.loc/custom/clients/base/api/get_account.php. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access
到.htaccess文件并重建.htaccess文件。但是,它没有给我解决方案。我仍然收到以下内容的错误消息:
JSONObject obj = new JSONObject(response.toString());
boolean check = obj.has("name");
。
我该如何解决?
答案 0 :(得分:1)
我找到了答案。我将以下代码放在rest api代码文件的顶部:
header('Access-Control-Allow-Origin: *');
它对我有用。