- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Laravel 分页和 Ajax 有问题。我的 Ajax 仍在重新加载页面,我不知道为什么以及如何修复它?我想避免重新加载页面。
后期编辑: 使用此 Ajax,我得到一个错误:Unable to preventDefault inside passive event listener due to target being treated as passive
。我用 document.addEventListener("mousewheel", this.mousewheel.bind(this), { passive: false }); 修复了这个问题
,但现在我的页面正在重新加载。
这是我的观点:
<div id="initiated" class="profile-edit tab-pane fade" style="background: none repeat scroll 0 0;">
<dl class="dl-horizontal">
<ul class="nav justify-content-center u-nav-v5-3 u-nav-primary " role="tablist" data-target="nav-5-3-primary-hor-center" data-tabs-mobile-type="slide-up-down" data-btn-classes="btn btn-md btn-block u-btn-outline-primary" style="display: flex;justify-content: flex-end;">
<li class="nav-item active">
<a a data-toggle="tab" href="#grid" style="font-size: 12px"><i class="fa fa-th-large"></i> Grid</a>
</li>
<li class="nav-item">
<a a data-toggle="tab" href="#list" style="font-size: 12px"><i class="fa fa-bars"></i> List</a>
</li>
</ul>
<div class="tab-content">
<div id="grid" class="tab-pane fade in active">
<?php $count_user = 0;
?>
@foreach($initiated as $record)
@if($count_user == 0)
<div class="row margin-bottom-20 ">
@endif
<?php $count_user++; ?>
<div class="col-sm-6 sm-margin-bottom-20">
<div class="profile-blog">
<img style="border-radius: 0% !important" class="rounded-x" src="{{ asset('thumbnail') }}/{{ $record->user ? $record->user->profile_picture : '' }}" alt="">
<div class="name-location" style="top: 30px;position: relative">
@if($record->user->role[0]->slug == 'individuals' ? $record->user->role[0]->slug : '')
<i style="font-size: 13px;position: relative;" class="icon-user"></i>
@elseif($record->user->role[0]->slug == 'organizations' ? $record->user->role[0]->slug : '')
<i style="font-size: 13px;position: relative;" class="icon-hotel-restaurant-172 u-line-icon-pro fa- fa-lg"></i>
@endif
<a id="my-link" style="color: #555;text-decoration: none;font-size: 16px" href="{{ url('') }}/{{ $record->user ? $record->user->username : '' }}">{{ $record->user ? $record->user->username : '' }}</a></h3>
</div>
<div class="clearfix "></div>
<strong style="font-size: 13px"><i style="padding: 5px" class="icon-real-estate-020 u-line-icon-pro"></i>Location : </strong>{{ $record->user ? $record->user->country->country : '' }} <span class="{{ $record->user ? $record->user->country->flag : '' }}"></span><br>
<strong style="font-size: 13px"><i style="padding: 5px" class="icon-notebook fa-"></i>Industry : </strong>{{ $record->user ? $record->user->industry->industry : '' }}<br>
@if($record->user->role[0]->slug == 'organizations' ? $record->user->role[0]->slug : '')
@if(isset($record->user->organization_type->organization_type))
<strong style="font-size: 13px"><i class="icon-hotel-restaurant-172 u-line-icon-pro fa- fa-lg" style="padding: 5px;font-size: 13px"></i>Organization : </strong>{{ $record->user ? $record->user->organization_type->organization_type : '' }}@endif
@endif
@if($record->user->role[0]->slug == 'individuals' ? $record->user->role[0]->slug : '')
@if(!empty($record->user->career_path[0]))
<strong style="font-size: 13px"><i class="icon-speedometer" style="padding: 5px"></i>Function : </strong>{{ $record->user ? $record->user->career_path[0]->functions->function : '' }}@endif
@endif
<hr>
<ul class="list-inline share-list">
<li>
<a href="/cancel-invitation/{{$record->id}}"><i class="fa fa-times"> </i>Cancel</a>
</li>
</ul>
</div>
</div>
@if($count_user == 2)
</div>
<?php $count_user = 0; ?>
@endif
@endforeach
</div>
<div id="list" class="tab-pane fade">
<?php $count_user = 0;
?>
@foreach($initiated_tab_2 as $record)
@if($count_user == 0)
<div class="row">
@endif
<?php $count_user++; ?>
<div class="col-sm-12 sm-margin-bottom-20" style="margin-bottom: 12px">
<div class="profile-blog" style="padding: 5px">
<img style="margin-right: 10px" src="{{ asset('thumbnail') }}/{{ $record->user ? $record->user->profile_picture : '' }}" alt="">
<div class="name-location">
<h3> @if($record->user->role[0]->slug == 'individuals' ? $record->user->role[0]->slug : '')
<i style="font-size: 13px;position: relative;" class="icon-user"></i>
@elseif($record->user->role[0]->slug == 'organizations' ? $record->user->role[0]->slug : '')
<i style="font-size: 13px;position: relative;" class="icon-hotel-restaurant-172 u-line-icon-pro fa- fa-lg"></i>
@endif <a id="my-link" style="color: #555;text-decoration: none;font-size: 16px" href="{{ url('') }}/{{ $record->user ? $record->user->username : '' }}">{{ $record->user ? $record->user->username : '' }}</a></h3>
<ul class="list-inline share-list d-flex pull-right" style="bottom: 25px;position: relative;margin-bottom: -20px;left: -25px">
<li style="left: 25px;position: relative">
<a href="/cancel-invitation/{{$record->id}}"><i class="icon-custom-me rounded fa fa-times"> </i></a>
</li>
</ul>
</div>
<div style="display: flex;right: 2px;position: relative;bottom: 12px;margin-bottom: -10px">
<div style="padding-right: 15px">
<strong><i class="icon-real-estate-020 u-line-icon-pro"></i> : </strong>{{ $record->user ? $record->user->country->country : '' }} <span class="{{ $record->user ? $record->user->country->flag : '' }}"></span>
</div>
<div style="padding-right: 10px">
<strong><i class="icon-screen-tablet fa-"></i> : </strong>{{ $record->user ? $record->user->industry->industry : '' }}
</div>
<div style="padding-right: 10px">
@if($record->user->role[0]->slug == 'organizations' ? $record->user->role[0]->slug : '')
@if(isset($record->user->organization_type->organization_type))
<strong><i class="icon-speedometer"></i> : </strong>{{ $record->user ? $record->user->organization_type->organization_type : '' }}
@endif
@endif
</div>
<div style="padding-right: 10px">
@if($record->user->role[0]->slug == 'individuals' ? $record->user->role[0]->slug : '')
@if(!empty($record->user->career_path[0]))
<strong><i class="icon-frame fa-"></i> : </strong>{{ $record->user ? $record->user->career_path[0]->functions->function : '' }}
@endif
@endif
</div>
</div>
</ul>
</div>
</div>
@if($count_user == 2)
</div>
<?php $count_user = 0; ?>
@endif
@endforeach
</div>
</div>
</dl>
{!! $initiated->render() !!}
</div>
这是我的脚本:
<script type="text/javascript">
function ajaxPaging() {
$('.pagination a').on('click', function (e) {
e.preventDefault();
var url = $(this).attr('href');
$('#initiated').load(url + ' div#initiated', null, ajaxPaging); // re-run on complete
});
}
document.addEventListener("mousewheel", this.mousewheel.bind(this), { passive: false });
ajaxPaging();
</script>
这是我的 Controller :
$initiated = \App\Invitation::with('user')
->where('inviter_id', Sentinel::getUser()->id)
->orderBy('id', 'desc')
->paginate(6);
最佳答案
试试这个: - 这里#master-data 是您要显示数据的部分的 ID。用你的替换它。或者根据需要修改代码。
$("body").on('click', '.pagination a',function(event){
event.preventDefault();
var myurl = $(this).attr('href');
var page=$(this).attr('href').split('page=')[1];
getData(page);
});
/* Ajax function to make ajax request. */
function getData(page=1){
$.ajax({
type: "POST",
url: '{{url("your url")}}',
data:'page='+page,
dataType: 'json',
processData: false,
success: function( response) {
if(response.status==102){
$('#master-data').html(response.html);
} else {
alert("Something went wrong");
}
}
});
}
关于javascript - jQuery Ajax - 仍在重新加载页面 - Laravel 分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58431370/
有人有 Comet 应用程序 .net 的任何样本吗? 我需要一个示例如何在服务器中保持客户端的连接? 最佳答案 这里也有一些不错的: http://www.frozenmountain.com/we
我想知道是否有 Yii2 专家可以帮助我了解如何最好地使用 ajax 表单与 Yii ajax 验证相结合。我想我可以在不带您阅读我所有代码的情况下解释这个问题。 我正在处理一个促销代码输入表单,用户
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
f:ajax 和 a4j:ajax 标记之间有什么显着差异吗? 我知道 Richfaces 4 中的 a4j:ajax 基于 native f:ajax JSF2 标记,添加了一些 f:ajax 中未
我已经尝试过这样但无法获取数组列表。它返回“null” var data=[]; data[0] = '1'; data[1] = '2'; $.ajax({
在教程中可以看到 jQuery.ajax 和 $.ajax 喜欢这里 http://www.thekludge.com/form-auto-save-with-jquery-serialize/ jQ
过度使用 AJAX 会影响性能吗?在大型 Web 应用程序的上下文中,您如何处理 AJAX 请求以控制异步请求? 最佳答案 过度使用任何东西都会降低性能;在必要时使用 AJAX 将提高性能,特别是如果
似乎我无法使用 Ext.Ajax.request 进行跨域 ajax 调用。看起来 ScriptTag: True 没有任何效果。 这是我的代码: {
我正在使用 Bottle 微框架(但我怀疑我的问题来自它) 首先,如果我定义了一个从/test_redirect 到/x 的简单重定向,它会起作用。所以 Bottle redirect() 在简单的情
任何人都可以指出各种 AJAX 库的统一比较吗?我已经阅读了大约十几种不同的书,我即将开始一个项目,但我对自己是否已经探索了可能性的空间没有信心。 请注意,我不是在要求“我认为 XXX 很棒”——我正
似乎使用 AJAX 的站点和应用程序正在迅速增长。使用 AJAX 的主要原因之一可能是增强用户体验。我担心的是,仅仅因为项目可以使用 AJAX,并不意味着它应该。 可能是为了 UX,AJAX 向站点/
假设我有一个可以通过 Javascript 自定义的“报告”页面。假设我有可以更改的 start_date、end_date 和类型(“简单”或“完整”)。现在 我希望地址栏始终包含当前(自定义) V
我一直在阅读 Ajax 并且希望从 stackoverflow 社区看到我是否正确理解所有内容。 因此,正常的客户端服务器交互是用户在 url 中拉出 Web 浏览器类型,并将 HTTP 请求发送到服
这可能有点牵强,但让我们假设我们需要它以这种方式工作: 我在服务器的 web 根目录中有一个 index.html 文件。该文件中的 javascript 需要向/secure/ajax.php 发出
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 去年关闭。 Improve this
我希望ajax post成功进入主页。由于某种原因,我一直做错事。知道我应该做什么来解决这个问题吗? window.APP_ROOT_URL = ""; Ajax $.ajax({ url: '#{a
我在 2 个不同的函数中有 2 个 ajax 调用。我想用.click来调用这2个函数。 func1 将数据插入数据库,然后 func2 检索数据,所以我的问题是如何等到 func1 完全完成然后只执
我试图在单击按钮后禁用该按钮。我尝试过: $("#ajaxStart").click(function() { $("#ajaxStart").attr("disabled", true);
我试图在每个 Ajax 请求上显示加载动画/微调器 我的 application.js $(document).on("turbolinks:load", function() { window.
我正在显示使用jQplot监视数据的图形。 为了刷新保存该图的div,我每5秒调用一次ajax调用(请参见下面的JavaScript摘录)。 在服务器上,PHP脚本从数据库中检索数据。 成功后,将在5
我是一名优秀的程序员,十分优秀!