thinkPHP5.0使用form表单提交数据和删除文章,不用TP的提示页面,使用弹出提示信息

form表单提交数据和删除文章时,TP的默认信息提示页面的看起来不是很好看,想要实现弹窗提示怎么做呢?

前端:可以使用前端的一个知识--iframe,iframe元素会创建包含另外一个文档的内联框架;target,规定在何处打开链接文档。

   另外想要实现一个好看的方便、能重复使用的弹窗就要开发一个弹窗插件了,这里推荐使用前端的弹窗插件sweetalert.js,为了方便、重复使用我们把它成封装一个函数,页面要引入sweetalert.js的css和js文件

后端:为了方便以后重复使用,先写一个公共函数,就是调用之前前端封装的函数弹出提示信息

一、form提交数据,前端HTML代码,要把iframe隐藏,否则会显示iframe在页面;form中target表示在iframe中打开form表单

  <iframe style="display: none" name="if"></iframe>
<form action="{:url('login/index')}" method="post" target="if">
<div class="panel loginbox">
<div class="panel-body">
<div class="form-group">
<div class="field field-icon-right">
<input type="text" name="username" id="username" placeholder="登录账号" required value="admin" />
<span class="icon icon-user margin-small"></span>
</div>
</div>
<div class="form-group">
<div class="field field-icon-right">
<input type="password" class="input input-big" name="password" id="password" placeholder="登录密码" required/>
<span class="icon icon-key margin-small"></span>
</div>
</div>
</div>
<div style="padding:30px;">
<input type="submit" id="button" class="button button-block bg-main text-big input-big" value="登录">
</div>
</div>
</form>

前端封装的函数

 /**
* 提示弹窗
* @param text 弹窗内容
* @param type 图标类型,默认null,可以填写success、error、warning、info、question
* @param bool showCancelButton 是否显示取消按钮
* @param callback 按下确认键后执行的函数
* @param all_callback 按到按钮之外,弹窗消失时执行函数
*/ function my_alert(text,type,callback,showCancelButton,all_callback) {
var now_text = text ? text : '你确定吗';
var now_type = type ? type : null;
var now_showCancelButton = showCancelButton ? showCancelButton : false;
var now_callback = callback ? callback : function () {};
var all_callback = all_callback ? all_callback : function (dismiss) {}; if (typeof(arguments[1]) == "function") {
now_type = null;
now_callback = arguments[1];
now_showCancelButton = arguments[2];
} swal({
text:now_text,
type:now_type,
showCancelButton:now_showCancelButton,
confirmButtonText:'确定',
cancelButtonText:'取消', }).then(function () {
now_callback();
},all_callback)
}

后端封装公共函数

 /**
* iframe 窗口调用父窗口:parent.functionName();
* @param $data 弹窗信息
* @param string $type 弹出框的类型
* @param bool $is_reload 是否刷新
* @param string $url 新页面打开地址
* @param
*/
function php_alert($data,$type = 'error', $is_reload = false, $url = ''){
if(empty($url) && !$is_reload){
echo "<script>parent.my_alert('$data','$type')</script>";
die;
}else if (empty($url) && $is_reload){
echo "<script>parent.my_alert('$data','$type',function() {parent.location.reload();})</script>";
}else{
echo "<script>parent.my_alert('$data','$type',function() {parent.location.href = '$url';})</script>";
die;
}
}

使用,回调地址要写模块/控制器/方法,如果不写模块admin会把控制器article作为模块,报article模块不存在

 if($save){
//$this->success('添加文章成功','index');
php_alert('添加文章成功!','success',false,'/admin/article/index');
}else{
php_alert('添加文章失败!','error',false);
//$this->error('添加文章失败','index');
}

弹出validate验证信息

 $validate = \think\Loader::validate('Article');
if($validate->scene('update')->check($data)){ }else{
$msg = $validate->getError();
php_alert($msg,'error',false);
}

二、删除文章、管理员

thinkPHP5.0使用form表单提交数据和删除文章,不用TP的提示页面,使用弹出提示信息

后端封装函数,因为删除数据时页面会跳转的,页面没有sweetalert插件的相关文件的,所以要输出引入相关文件

 /**
* 自定义tp自带的跳转提示页;
* @param data 弹窗信息
* @param string $type 弹出框的类型
* @param string callable 新页面打开地址
*/
function alert_msg($text='',$type='error',$callback=''){
echo '<meta charset="utf-8" /><link href="/public/static/common/css/sweetalert.min.css" rel="stylesheet"><script src="/public/static/admin/js/jquery_002.js"></script><script type="text/javascript" src="/public/static/common/js/sweetalert.min.js"></script> <script src="/public/static/admin/js/my_config.js"></script>';
echo "<script>window.onload=function () {my_alert('$text','$type',function() {location.href = '$callback';})}</script>";
die;
}

调用

 public function del(){
$del = db('admin')->where('id',input('id'))->delete();
if($del){
alert_msg('删除管理员成功!','success','/admin/admin/index');
}else{
alert_msg('删除管理员失败!','error','/admin/admin/index');
}
}

thinkPHP5.0使用form表单提交数据和删除文章,不用TP的提示页面,使用弹出提示信息

上一篇:谢谢博客-园,让我不再有开源AYUI的想法


下一篇:DataPipeline丨金融行业如何统一管理单个任务下所有API的同步情况