我有一个AJAX调用来获取模型中的记录并以模式显示值,该模式必须在GET请求完成后弹出。

javascript控制台返回Uncaught ReferenceError: KWS1389776 is not defined at HTMLButtonElement.onclick

在如何将变量在onClick事件中传递给javascript函数时,似乎存在一些问题。

这是开发的代码:

<button type="button" class="btn btn-label-primary btn-lg btn-upper"
data-toggle="modal" data-target="#kt_modal_4_2"
onClick="getPropertyDetails({{$match->prop_id}})">
{{ __('pages/processes/offerdemand.labels.matchs.index.button.viewproperty') }}</button>


<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Property;

class PropertyController extends Controller
{
    public function details($id)
    {
        $property = Property::where('prop_id', $id)->first();
        return view('pages.processes.offerdemand.matchs.propertymodal', compact('property'));
    }
}


function getPropertyDetails(prop_id) {
    console.log(prop_id);

    $.ajaxSetup({
        headers: {
            'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
        }
    });

    $.ajax({
        method: 'GET',
        url: '/property/details/' + prop_id,

        success: function (data) {
            console.log(data);

            if (data.status != 200) {

                console.log(data.status);
                swal.fire({
                    "title": "",
                    "text": "Ocurrió un error, contactar al administrador",
                    "type": "error",
                    showConfirmButton: !1,
                    timer: 3000,
                    onClose: () => {
                        window.location.reload();
                    }
                });

            }
            $('#kt_modal_4_2').modal("show");


        }
    });
}

最佳答案

问题是您要给它传递一个变量,不是吗?

您需要将输入包装为字符串,例如

onClick="getPropertyDetails('{{ $match->prop_id }}')">


在这一点上,我只能假设您的prop_idKWS1389776,并且由于错误状态而出现该错误是因为不存在将其作为变量引用。

关于javascript - Laravel Ajax-未捕获的ReferenceError:HTMLButtonElement.onclick中未定义KWS1389776,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60873873/

10-11 01:06