我在Laravel 5.1中使用Datatable,當用jQuery加載Datatable時,我不知道應該如何爲改變語言添加json文件?如何在Laravel 5.1中爲文件創建路徑?
我在刀片頁面代碼:
<script>
$(function() {
dTable = $('#admins').DataTable({
"responsive": true,
"processing": true,
"serverSide": true,
"ajax": "list_admin_ajax",
"pagingType": "full_numbers",
"language": {
"url": "{{ url('/public/include/Persian.json') }}"
}
});
dTable.order([ 1, 'desc' ]).draw();
})
</script>
但這個錯誤結束:
http://localhost:8000/public/include/Persian.json 404 (Not Found)
您可以澄清一下您的問題。你想做什麼? – greut
我想爲更改語言設置「url」但未找到我的文件 – AliNasiri