如何从Laravel Controller编写Javascript警报?

时间:2018-01-23 13:35:42

标签: javascript laravel

这里,这个代码在laravel controller

此代码从控制器定义并用于javascript

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

会发生错误

意外的令牌&lt;在位置0的JSON中

3 个答案:

答案 0 :(得分:0)

以控制器方法返回脚本或创建简单的刀片并使用视图功能并将脚本放入刀片:

class TestController extends Controller
    {
    public function index(){

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

答案 1 :(得分:0)

尝试:

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

或尝试以下操作:

return redirect()->back()->with('alert','hello');

答案 2 :(得分:0)

@push('stylesheets')
    <link rel="stylesheet" href="custom/css/required/by/child">
@endpush

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