可以在视图文件中写入哪些 url 代码以调用 Laravel 控制器中的函数


What the url code can be write in the view file to call the function in Laravel Controller?

$('#calendar').fullCalendar({
            events: JSON.parse(json_events),
            //events: [{"id":"14","title":"New Event","start":"2015-01-24T16:00:00+04:00","allDay":false}],
            utc: true,
            header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,agendaWeek,agendaDay'
            },
            editable: true,
            droppable: true, 
            slotDuration: '00:30:00',
            eventReceive: function(event){
                var title = event.title;
                var start = event.start.format("YYYY-MM-DD[T]HH:mm:SS");
                $.ajax({
                    url: 'process.php',
                    data: 'type=new&title='+title+'&startdate='+start+'&zone='+zone,
                    type: 'POST',
                    dataType: 'json',
                    success: function(response){
                        event.id = response.eventid;
                        $('#calendar').fullCalendar('updateEvent',event);
                    },
                    error: function(e){
                        console.log(e.responseText);
                    }
                });
                $('#calendar').fullCalendar('updateEvent',event);
                console.log(event);
            },

这是我在网上找到的代码,我不明白 abou 的 url 部分.因为我使用的是拉拉维尔,所以我不确定在 url 部分写什么。我已经创建了一个控制器和模型,只是不确定如何将数据传入并存储在数据库中。

这是可以转换为控制器和模型process.php

$type = $_POST['type'];
if($type == 'new')
{
    $startdate = $_POST['startdate'].'+'.$_POST['zone'];
    $title = $_POST['title'];
    $insert = mysqli_query($con,"INSERT INTO calendar(`title`, `startdate`, `enddate`, `allDay`) VALUES('$title','$startdate','$startdate','false')");
    $lastid = mysqli_insert_id($con);
    echo json_encode(array('status'=>'success','eventid'=>$lastid));
}
if($type == 'changetitle')
{
    $eventid = $_POST['eventid'];
    $title = $_POST['title'];
    $update = mysqli_query($con,"UPDATE calendar SET title='$title' where id='$eventid'");
    if($update)
        echo json_encode(array('status'=>'success'));
    else
        echo json_encode(array('status'=>'failed'));
}
if($type == 'resetdate')
{
    $title = $_POST['title'];
    $startdate = $_POST['start'];
    $enddate = $_POST['end'];
    $eventid = $_POST['eventid'];
    $update = mysqli_query($con,"UPDATE calendar SET title='$title', startdate = '$startdate', enddate = '$enddate' where id='$eventid'");
    if($update)
        echo json_encode(array('status'=>'success'));
    else
        echo json_encode(array('status'=>'failed'));
}
if($type == 'remove')
{
    $eventid = $_POST['eventid'];
    $delete = mysqli_query($con,"DELETE FROM calendar where id='$eventid'");
    if($delete)
        echo json_encode(array('status'=>'success'));
    else
        echo json_encode(array('status'=>'failed'));
}
if($type == 'fetch')
{
    $events = array();
    $query = mysqli_query($con, "SELECT * FROM calendar");
    while($fetch = mysqli_fetch_array($query,MYSQLI_ASSOC))
    {
    $e = array();
    $e['id'] = $fetch['id'];
    $e['title'] = $fetch['title'];
    $e['start'] = $fetch['startdate'];
    $e['end'] = $fetch['enddate'];
    $allday = ($fetch['allDay'] == "true") ? true : false;
    $e['allDay'] = $allday;
    array_push($events, $e);
    }
    echo json_encode($events);
}

?>

这是我对拉拉维尔的逻辑。

路线.php



     Route::get('/', function() {
                return View::make('hello');
        });
        Route::get('calender', 'CalendarController@showEvent');
        Route::post('calendar/add', 'CalendarController@postAdd');

控制器:日历控制器.php

类日历控制器扩展基本控制器 {        函数 showEvent(( {            返回视图::制作('display_event'(;        }        函数 postAdd(( {            回声json_encode($_POST(;        }    }

查看脚本:display_event.php下载视图 : 点击这里

请将 html 与http://192.241.236.31/themes/preview/smartadmin/1.4.1/ajaxversion/#ajax/calendar.html(阿贾克斯日历视图(

按 ajax 查看负载:http://192.241.236.31/themes/preview/smartadmin/1.4.1/ajaxversion/ajax/calendar.html

希望这对你有用。

试试吧

 Url :"<?php echo action('YourController@getIndex');?>",

您可以将getIndex替换为任何方法