我是 Laravel 新手,目前正在使用 Laravel 6.0
出于某种原因,我使用 @push 的 javascript 无法正常工作。该脚本仅在我将代码粘贴到刀片文件中而不使用资产文件夹时才有效。
add.blade.php
@extends('layouts.app')
@section('content')
// Long HTML code
@endsection
@push('scripts')
<script src="{{ asset('js/position.js') }}"></script>
@endpush
布局 > app.blade.php
<main class="py-4">
@yield('content')
</main>
</div>
@stack('scripts')
</body>
公共(资产)> js > position.js
$('#department').change(function(){
var departmentID = $(this).val();
if(departmentID) {
$.ajax({
type:"GET",
url:"{{url('get-section-list-position')}}?department_id="+departmentID,
success:function(res){
if(res) {
$("#section").empty();
$("#section").append('<option>Please Select Section</option>');
$.each(res,function(key, value){
$("#section").append('<option value="'+key+'">'+value+'</option>');
});
} else {
$("#section").empty();
}
}
});
} else {
$("#section").empty();
}
});
如果我将脚本粘贴到 add.blade.php 并使用@section,它可以工作,但我担心我的系统的安全性会受到损害。请帮忙。
慕码人2483693