我正在尝试通过 ajax 将 HTML 字符串从客户端发送到服务器。我不断收到“不允许的关键字符”错误。所以我把它$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
设置为空,$config['permitted_uri_chars'] = '';
因为 CodeIgniter 说Leave blank to allow all characters -- but only if you are insane.
但我仍然收到 Disallowed Key Characters 错误。
这就是我试图发送它的方式:
var content = '<p class="MsoNormal">Hi {$first_name}</p>\n<p class="MsoNormal">My name is Bill, etc etc.</p>';
$.get('/task/preview_template', {content:content}, function(data) {
console.log(data); //Disallowed Key Characters
});