admin管理员组

文章数量:1345007

here, this code inside laravel controller

this code define from controller and use to javascript

<script type="text/javascript">alert("hello!");</script>

it will occure error

Unexpected token < in JSON at position 0

here, this code inside laravel controller

this code define from controller and use to javascript

<script type="text/javascript">alert("hello!");</script>

it will occure error

Unexpected token < in JSON at position 0

Share Improve this question edited Jan 24, 2018 at 3:41 Dharmik Unagar asked Jan 23, 2018 at 13:35 Dharmik UnagarDharmik Unagar 581 gold badge2 silver badges8 bronze badges 7
  • more explanation. more code. a real question. I think this will be closed soon – messerbill Commented Jan 23, 2018 at 13:36
  • Looks like you're just testing how Laravel and JS work. Put this code into the Blade view you're executing. If you've just installed Laravel, put this to resources/view/wele.blade.php – Alexey Mezenin Commented Jan 23, 2018 at 13:37
  • simple this javascript alert in laravel controller echo '<script type="text/javascript">alert("hello!");</script>'; – Dharmik Unagar Commented Jan 23, 2018 at 13:37
  • To print HTML on a blade template simply put inside here {!! your_html !!} – Iker Vázquez Commented Jan 23, 2018 at 13:38
  • simple this javascript alert in laravel controller - Laravel is PHP and executed on the server side. This is part of a template – messerbill Commented Jan 23, 2018 at 13:39
 |  Show 2 more ments

2 Answers 2

Reset to default 5

Try:

echo "<script>";
echo "alert('hello');";
echo "</script>";

Or try this:

return redirect()->back()->with('alert','hello');
@push('stylesheets')
    <link rel="stylesheet" href="custom/css/required/by/child">
@endpush

@push('scripts')
    <script src="custom/js/required/by/child"></script>
@endpush

本文标签: How to Write Javascript Alert from Laravel ControllerStack Overflow