Output data and messages directly in the view

一笑奈何 提交于 2019-12-11 17:03:13

问题


I am currently working on ajax, jquery and javascript. I have slight problems with it.

I can use this code to send the data and they are stored in the database. But the data will not be displayed directly after sending in the view, until I have reloaded the page.

How can I output the data directly in the view without reloading the page?

How can I output errors and success messages as flashmessage (toastr) message?


how can I rewrite this code that works? I get the error message that it is a duplicate of the selectors.

    $('#todolist-create-modal').modal('hide');
    $('#todolist-create-modal').on('keypress', ":input:not(textarea)", function(event) {
                        return event.keyCode != 13;
});

Code

   <script type="application/javascript">
    $(document).ready(function () {
        var CSRF_TOKEN = $('meta[name="csrf-token"]').attr('content');

        $('#add-todo-list').click(function(e) {
            e.preventDefault();
            var _token = $("input[name='_token']").val(); // get csrf field.
            var title = $("input[name='title']").val();
            var description = $("textarea[name='description']").val();
            var privacy = $("select[name='privacy']").val();
            var listid = $("select[name='privcy']").val();
            $.ajax({
                url:'{{ route('todolists.store') }}',
                type: 'POST',
                data: {_token:_token, title:title, description:description, privacy:privacy},
                success: function (data) {
                    console.log(data);

                    if (privacy = 0) {

                        //go to the left side

                    } else {

                        //go to the right side

                    }
                },
                error: function(data){
                    console.log(data);
                }
        });
            $('#todolist-create-modal').modal('hide');
            $('#todolist-create-modal').on('keypress', ":input:not(textarea)", function(event) {
                return event.keyCode != 13;
            });
        });

    });
</script>

view

<div id="content" class="dashboard padding-10">
        <div class="row">
            <div class="col-md-offset-3 col-md-6">
                <a data-toggle="modal" data-target=".todolist-create-modal" class="btn btn-success btn-block btn-sm margin-bottom-10">Neue Liste erstellen</a>
            </div>
        <div class="col-md-6">
            <div id="panel-misc-portlet-l3" class="panel panel-default text-center">
                <div class="panel-heading nohover">
                    <span class="elipsis">
                        <strong>Öffentliche Tasks</strong>
                    </span>
                </div>
            </div>
            <div class="alert alert-danger margin-bottom-30 {{ $todolistpublic->count() ? 'hidden' : '' }}">
                Es wurden keine <strong>Einträge</strong> gefunden.
            </div>
            @foreach ($todolistpublic as $list)
                <div id="todo-list-{{$list->id}}" class="panel panel-default panel-primary margin-bottom-0">
                    <div class="panel-heading panel-pointer">
                            <span class="elipsis"><!-- panel title -->
                                <strong>{{ $list->title }}</strong> <span class="label label-info white">0</span>
                            </span>
                        <ul class="options pull-right relative list-unstyled hover-visible">
                            <li><a data-toggle="modal" data-target=".task-modal" class="btn btn-success btn-xs white hover-hidden">
                                    <i class="fa fa-plus"></i> Erstellen
                                </a>
                            </li>
                            <li><a data-toggle="modal" data-target=".todolist-modal" data-id="{{ $list->id }}" data-title="{{ $list->title }}" data-description="{{ $list->description }}" class="btn btn-info btn-xs white hover-hidden">
                                    <i class="fa fa-edit"></i> Bearbeiten
                                </a>
                            </li>
                            <li><a data-toggle="modal" data-target=".todolist-delete-modal" data-id="{{ $list->id }}" data-title="{{ $list->title }}" data-description="{{ $list->description }}" class="btn btn-danger btn-xs white hover-hidden">
                                    <i class="fa fa-times"></i> Löschen
                                </a>
                            </li>
                            <li><a href="#" class="opt panel_colapse" data-placement="bottom"></a></li>
                        </ul>
                    </div>
                    <div class="panel-body">
                        <div class="slimscroll" data-always-visible="false" data-rail-visible="false" data-railOpacity="1" data-height="100">
                            {{ $list->description }}
                        </div>
                    </div>
                </div>
            @endforeach
            <div class="panel-footer mtm-10">
                <span id="todo-list-counter-public">{{ $todolistpublic->count() }}</span> <span>{{ $todolistpublic->count() > 1? 'Listen' : 'Liste' }}</span>
            </div>
        </div>

        <div class="col-md-6">
            <div id="panel-misc-portlet-l3" class="panel panel-default text-center">
                <div class="panel-heading nohover">
                    <span class="elipsis">
                        <strong>Private Tasks</strong>
                    </span>
                </div>
            </div>
            <div class="alert alert-danger margin-bottom-30 {{ $todolistprivate->count() ? 'hidden' : '' }}">
                Es wurden keine <strong>Einträge</strong> gefunden.
            </div>
            @foreach ($todolistprivate as $list)
                <div id="todo-list-{{$list->id}}" class="panel panel-default panel-primary margin-bottom-0">
                    <div class="panel-heading panel-pointer">
                            <span class="elipsis"><!-- panel title -->
                                <strong>{{ $list->title }}</strong> <span class="label label-info white">0</span>
                            </span>
                        <ul class="options pull-right relative list-unstyled hover-visible">
                            <li><a data-toggle="modal" data-target=".task-modal" class="btn btn-success btn-xs white hover-hidden"><i class="fa fa-plus"></i> Erstellen</a></li>
                            <li><a data-toggle="modal" data-target=".todolist-modal" class="btn btn-info btn-xs white hover-hidden"><i class="fa fa-edit"></i> Bearbeiten</a></li>
                            <li><a href="#" class="btn btn-danger btn-xs white hover-hidden"><i class="fa fa-times"></i> Löschen</a></li>
                            <li><a href="#" class="opt panel_colapse" data-placement="bottom"></a></li>
                        </ul>
                    </div>
                    <div class="panel-body">
                        <div class="slimscroll" data-always-visible="false" data-rail-visible="false" data-railOpacity="1" data-height="100">
                            {{ $list->description }}
                        </div>
                    </div>
                </div>
            @endforeach
            <div class="panel-footer mtm-10">
                <span id="todo-list-counter-private">{{ $todolistprivate->count() }}</span> <span>{{ $todolistprivate->count() > 1? 'Listen' : 'Liste' }}</span>
            </div>
        </div>

        @include('elements.addTodoList')
        @include('elements.createTodoList')
        @include('elements.addTask')
    </div>
</div>

Controller

public function store(Request $request)
{
    $validator = Validator::make($request->all(), [
        'title' => 'required|min:5',
        'description' => 'required|min:10',
        'privacy' => 'required|integer'
    ]);

    $attributeNames = array(
        'title' => 'Title',
        'description' => 'Description',
    );
    $validator->setAttributeNames($attributeNames);
    //Redirect back if validation fails
    if($validator->fails()) {
        return response()->json(['error'=>$validator->errors()->all()]);
    }
    else{
        $todolists = new Todolists();
        $todolists->admin_id = Auth::id();
        $todolists->title = $request->title;
        $todolists->description = $request->description;
        $todolists->privacy = $request->privacy;
        $todolists->save();

        return response()->json(['Your enquiry has been successfully submitted!']);

    }

}

EDIT

I have revised and adapted the code. Currently I have two more problems:

The flashmessage is only output as 'empty'. Without text content. Where is the problem?

The div is also reloaded. But after it was loaded I can not send the same request again. Do I have to reset something or what is the error?

When I issue the errors in the console with console.log(data); I get the following error messages: {error: Array(2)} error : (2) ["The Title ist erforderlich.", "The Description ist erforderlich."]

<script type="application/javascript">
    $(document).ready(function () {
        var CSRF_TOKEN = $('meta[name="csrf-token"]').attr('content');

        $('#add-todo-list').click(function(e) {
            e.preventDefault();
            $('.todolist-create-modal').on('keypress', ":input:not(textarea)", function(event) {
                return event.keyCode != 13;
            });

            var _token = $("input[name='_token']").val(); // get csrf field.
            var title = $("input[name='title']").val();
            var description = $("textarea[name='description']").val();
            var privacy = $("select[name='privacy']").val();
            $.ajax({
                url:'{{ route('todolists.store') }}',
                type: 'POST',
                data: {_token:_token, title:title, description:description, privacy:privacy},
                success: function (response) {
                    if (response.error) {
                        _toastr((response),"top-full-width","error",false);
                    }
                    else{
                        $('.todolist-create-modal').modal('hide');
                        $("#content").load(location.href+" #content>*","");
                        _toastr((response),"top-full-width","success",false);
                    }
                }
            });
        });
    });
</script>

回答1:


Q: How can I output the data directly in the view without reloading the page?

One way with jQuery was loading partial content, this will request again the page, get the contents of #content div and replace the HTML, fast and without reload the page:

$("#content").load("/url-of-page > #content > *");

Q: How can I output errors and success messages as flashmessage (toastr) message?

Just write the message on a HTML element:

success: function(data){
   $(".alert-danger").addClass("hidden");
   $(".alert-success").html(data.msg).removeClass("hidden");
},
error: function(data){
   $(".alert-success").addClass("hidden");
   $(".alert-danger").html(data.error).removeClass("hidden");
}


来源:https://stackoverflow.com/questions/52163545/output-data-and-messages-directly-in-the-view

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!