我不确定我做错了什么。 FireBug向我展示了这个错误:
SyntaxError: unterminated string literal
$.post(('<!DOCTYPE html>
相应的代码是:
$('#botonGuardarIngreso').on('click', function(){
var html = $(this).html();
$(this).html('<i class="fa fa-spin fa-spinner"></i> Cargando...');
$.post(('{{ path('editar_proceso', {'id': procesado}) }}'), $('form').serialize(), function(data){
$('#botonGuardarIngreso').html(html);
if(data.exito){
exito('El proceso disciplinario fue modificado exitosamente');
window.location = '{{ path('index_proceso') }}';
}else{
error(data.errores, 'Errores, por favor reviselos', 15000);
}
}, 'json');
});
答案 0 :(得分:1)
我猜{{ path('editar_proceso', {'id': procesado}) }}
会生成一个模板。
删除此模板中的\n
或将其替换为\\n
(在新行之前的末尾反斜杠)。