我在使用 codeigniter uri 语言标识符和 form_validation 时遇到问题。
问题是当我将 $config['lang_ignore'] 设置为 FALSE 时 form_validation 停止工作。如codeigniter的wiki中所述,我已经在干净的codeigniter安装和设置uri语言标识符中进行了测试。
这是我的控制器应用程序/控制器/form_validation_test.php:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Form_validation_test extends CI_Controller {
public function __construct()
{
parent::__construct();
}
public function index()
{
$this->load->view('form_validation_test_view');
}
//Get Ajax POST:
public function getPost()
{
$result = FALSE;
$data = NULL;
$this->load->library('form_validation');
$this->form_validation->set_rules('user','User','required');
$result = $this->form_validation->run();
$response = array(
'result' => $result
);
$this->output->set_content_type('application/json')
->set_output(json_encode($response));
}
}
查看应用程序/views/form_validation_view.php:
<script src="http://ci_test.localhost/js/jquery-1.8.2.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://ci_test.localhost/js/ci_test.js"></script>
<form name="formulario" id="formulario" action="http://ci_test.localhost/form_validation_test/getPost">
<input type="text" id="user" name="user" value="">
</form>
<input type="button" id="btnSubmit" value="submit">
<div id="result"></div>
和 Javascript 文件 js/ci_test.js:
jQuery(document).ready(function(){
jQuery('#btnSubmit').click(function(){
var postData = jQuery('#formulario').serialize();
var targetUrl = jQuery('#formulario').attr('action');
jQuery.ajax({
url: targetUrl,
data: postData,
type: 'post',
dataType: 'json',
success: function (data, textStatus, jqXHR) {
res = data.result ? 'TRUE':'FALSE';
jQuery('#result').html(res);
}
});
});
});
如您所见,我通过 ajax 请求发送帖子,只需获取结果并将其放在 div 中。如果将“lang_ignore”设置为 TRUE,它会起作用,但如果将其设置为 FALSE,则不会。
我观察到的另一个行为是,当一切正常时,您会在 firebug 中看到 POST 请求,但是当使用 lang_ignore 作为 FALSE 时,您可以看到 POST 请求和仍在加载的 GET 请求。我不知道为什么会发生这种情况,但也许可以帮助某人找到问题。
任何帮助,将不胜感激。谢谢大家的时间。