我在发送Ajax请求到codeigniter控制器时遇到麻烦。它会抛出404禁止访问错误。我发现了与此类似的问题,但是不确定它是否特定于CodeIgniter框架,以及该线程中提供的解决方案是否不能解决我的问题。以下是我的ajax请求。我想知道这可能是由于CI Application文件夹的根文件夹.htaccess引起的,但是我还不想更改其默认配置。
将ajax请求发送到CI控制器是实现此目的的正确方法吗?如果没有,请提出任何建议。谢谢!
var ajax_load = '{loading gif img html}'; var ajax_processor = 'http://localhost/patientcare-v1/application/controller/ajax_processor/save_physical_info'; $("#save").click(function(){ $("#dialog-form").html(ajax_load); $.post( ajax_processor, $("#physical-info").serialize(), function(responseText){ $("#dialog-form").html(responseText); }, "json" ); });
从您的喜欢中删除<code>和application/controller``ajax_processor
<code>
application/controller``ajax_processor
var ajax_processor = 'http://localhost/patientcare-v1/index.php/ajax_porcessor/save_physical_info';
如果你是隐藏index.php的url使用htaccess或routing再试试这个网址,
index.php
url
htaccess
routing
var ajax_processor = 'http://localhost/patientcare-v1/ajax_porcessor/save_physical_info';