gpt4 book ai didi

javascript - 当我点击 Laravel 中的新窗口时,我的页面未显示任何内容(*白屏”)

转载 作者:行者123 更新时间:2023-12-01 00:12:59 24 4
gpt4 key购买 nike

当单击按钮时,我尝试打开新窗口,但是当新窗口打开时,它什么也没有显示......它应该显示我从 Blade View 文件制作的布局......当我检查控制台时,没有显示任何错误

这是我的 View Blade 文件

SLACategoryCheckBoxList.blade.php


!DOCTYPE html>
<html lang="en" class="app">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>{{ __('messages.module.incidentmgt') }}</title>
<meta name="csrf-token" content="{{ csrf_token() }}">

<link rel="stylesheet" href="{{ asset('css/app.v2.css') }}" />
<link rel="stylesheet" href="{{ asset('css/popupPage.css') }}" />
<script src="{{ asset('js/BaseCommon.js') }}"></script>
<script src="{{ asset('js/app.v2.js') }}"></script>
<script src="{{ asset('js/app.js') }}"></script>
<script src="{{ asset('js/jquery-3.2.1.min.js') }}"></script>
<script>

</script>


</head>
<body>
<form role="form" method="post" action="" enctype="multipart/form-data">
<table width="100%" border="0" cellpadding="" cellspacing="0">
<tr>
<td class="header">{{ __('messages.module.refmgt') }}&nbsp;&rsaquo;&rsaquo;&nbsp;<span class="header-selblue">{{ __('messages.module.category') }}</span></td>
</tr>
<tr>
<td class="none">
<table class="fixed_header" width="100%" cellpadding="1" cellspacing="1" border="0">
<thead>
<tr class="subheader-blue">
<td style='width: 300px;'>{{ __('messages.refcategory.abbr') }}</td>
<td style='width: 6000px;'>{{ __('messages.customer.name') }}</td>
<td style='width: 110px;'>&nbsp;</td>
</tr>
</thead>

</table>
</td>
</tr>
</table>
</form>

</body>
</html>


web.php

Route::group(['prefix' => 'sla'], function () {


Route::get('sla/getCategory','SlaController@slaCategoryTreeListScreen')->name('sla.slaCategoryTreeListScreen');

});

SlaController.php

 public function slaCategoryTreeListScreen() {


return view('sla.slm.SLACategoryCheckBoxList');
}

我的另一个 View Blade 触发按钮

<a class="btn btn-sm btn-default pull-right" type="button" title="Search Category" onclick="openNewWindow('{{ route('sla.slaCategoryTreeListScreen') }}')" >

最佳答案

刚刚通过将所有资源路由放在 web.php 中的 get 路由下面解决了这个错误

(由@adaminho回答)

关于javascript - 当我点击 Laravel 中的新窗口时,我的页面未显示任何内容(*白屏”),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59941634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com