FastAdmin菜单规则树形结构分类显示

控制器controller文件Classification.php

<?phpnamespace app\admin\controller\classification;use app\common\controller\Backend;
use fast\Tree;
use think\Db;
use app\admin\model\AuthRule;
use think\Cache;/*** 模块分类管理** @icon fa fa-circle-o*/
class Classification extends Backend
{/*** Classification模型对象* @var \app\admin\model\classification\Classification*/protected $model = null;protected $classificationlist = [];protected $multiFields = 'ismenu,status';public function _initialize(){parent::_initialize();$this->model = new \app\admin\model\classification\Classification;list($where, $sort, $order, $offset, $limit) = $this->buildparams();// 必须将结果集转换为数组$classificationList = \think\Db::name("classification")->field('createtime,updatetime', true)->where($where)->order('weigh DESC,id ASC')->select();$search_id_arr = [];$filter_arr = json_decode($this->request->get("filter"), true);$this->assignconfig("show", 0); // 1 支持搜索 搜索后正常展示数据 0 支持搜索 搜索后不展示数据只记录条数if ($filter_arr != []) {$this->assignconfig("show", 1);}foreach ($classificationList as $k => &$v) {$v['name'] = __($v['name']);if ($filter_arr != [] && isset($filter_arr['name'])) {$search_id_arr[] = $v['pid'];}}unset($v);Tree::instance()->init($classificationList)->icon = ['&nbsp;&nbsp;&nbsp;&nbsp;', '&nbsp;&nbsp;&nbsp;&nbsp;', '&nbsp;&nbsp;&nbsp;&nbsp;'];$this->classificationlist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0, '', $search_id_arr), 'name');$classificationdata = [0 => __('None')];foreach ($this->classificationlist as $k => &$v) {if (!$v['ismenu']) {continue;}$classificationdata[$v['id']] = $v['name'];unset($v['spacer']);}unset($v);$this->view->assign('ruledata', $classificationdata);$this->view->assign("menutypeList", $this->model->getMenutypeList());$getPromotionPlatformList = Db::table('fa_classification')->where('pid', '0')->column('promotion_platform');$this->view->assign("promotionPlatformList", array_combine($getPromotionPlatformList, $getPromotionPlatformList));$this->view->assign("statusList", $this->model->getStatusList());}/*** 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法* 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑* 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改*//*** 查看*/public function index(){if ($this->request->isAjax()) {$list = $this->classificationlist;$total = count($this->classificationlist);$result = array("total" => $total, "rows" => $list);return json($result);}return $this->view->fetch();}/*** 添加*/public function add(){if ($this->request->isPost()) {$this->token();$params = $this->request->post("row/a", [], 'strip_tags');if ($params) {if (!$params['ismenu'] && !$params['pid']) {$this->error(__('The non-menu rule must have parent'));}$result = $this->model->save($params);if ($result === false) {$this->error($this->model->getError());}Cache::rm('__menu__');$this->success();}$this->error();}return $this->view->fetch();}/*** 编辑*/public function edit($ids = null){// 类不存在:app\common\validate\Classification$row = $this->model->get(['id' => $ids]);if (!$row) {$this->error(__('No Results were found'));}if ($this->request->isPost()) {$this->token();$params = $this->request->post("row/a", [], 'strip_tags');if ($params) {if (!$params['ismenu'] && !$params['pid']) {$this->error(__('The non-menu rule must have parent'));}if ($params['pid'] == $row['id']) {$this->error(__('Can not change the parent to self'));}if ($params['pid'] != $row['pid']) {$childrenIds = Tree::instance()->init(collection(AuthRule::select())->toArray())->getChildrenIds($row['id']);if (in_array($params['pid'], $childrenIds)) {$this->error(__('Can not change the parent to child'));}}//这里需要针对name做唯一验证
//                $ruleValidate = \think\Loader::validate('Classification');
//                $ruleValidate->rule([
//                    'name' => 'require|unique:AuthRule,name,' . $row->id,
//                ]);$result = $row->save($params);if ($result === false) {$this->error($row->getError());}Cache::rm('__menu__');$this->success();}$this->error();}$this->view->assign("row", $row);return $this->view->fetch();}/*** 删除*/public function del($ids = ""){if (!$this->request->isPost()) {$this->error(__("Invalid parameters"));}$ids = $ids ? $ids : $this->request->post("ids");if ($ids) {$delIds = [];foreach (explode(',', $ids) as $k => $v) {$delIds = array_merge($delIds, Tree::instance()->getChildrenIds($v, true));}$delIds = array_unique($delIds);$count = $this->model->where('id', 'in', $delIds)->delete();if ($count) {Cache::rm('__menu__');$this->success();}}$this->error();}}

模型model文件Classification.php

<?phpnamespace app\admin\model\classification;use think\Model;class Classification extends Model
{// 表名protected $name = 'classification';// 自动写入时间戳字段protected $autoWriteTimestamp = 'integer';// 定义时间戳字段名protected $createTime = 'createtime';protected $updateTime = 'updatetime';protected $deleteTime = false;// 追加属性protected $append = ['menutype_text','status_text'];protected static function init(){self::afterInsert(function ($row) {$pk = $row->getPk();$row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]);});}public function getMenutypeList(){return ['addtabs' => __('Addtabs'), 'blank' => __('Blank'), 'dialog' => __('Dialog'), 'ajax' => __('Ajax')];}public function getStatusList(){return ['normal' => __('Normal'), 'hidden' => __('Hidden')];}public function getStatusTextAttr($value, $data){$value = $value ? $value : (isset($data['status']) ? $data['status'] : '');$list = $this->getStatusList();return isset($list[$value]) ? $list[$value] : '';}public function getMenutypeTextAttr($value, $data){$value = $value ? $value : (isset($data['menutype']) ? $data['menutype'] : '');$list = $this->getMenutypeList();return isset($list[$value]) ? $list[$value] : '';}}

页面view文件

首页index.html

<div class="panel panel-default panel-intro"><div class="panel-heading">{:build_heading(null,FALSE)}<ul class="nav nav-tabs" data-field="promotion_platform"><li class="{:$Think.get.promotion_platform === null ? 'active' : ''}"><a href="#t-all" data-value="" data-toggle="tab">{:__('All')}</a></li>{foreach name="promotionPlatformList" item="vo"}<li class="{:$Think.get.promotion_platform === (string)$key ? 'active' : ''}"><a href="#t-{$key}" data-value="{$key}" data-toggle="tab">{$vo}</a></li>{/foreach}</ul></div><div class="panel-body"><div id="myTabContent" class="tab-content"><div class="tab-pane fade active in" id="one"><div class="widget-body no-padding"><div id="toolbar" class="toolbar"><a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a><a href="javascript:;" class="btn btn-success btn-add {:$auth->check('classification/classification/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i> {:__('Add')}</a><a href="javascript:;" class="btn btn-success btn-edit btn-disabled disabled {:$auth->check('classification/classification/edit')?'':'hide'}" title="{:__('Edit')}" ><i class="fa fa-pencil"></i> {:__('Edit')}</a><a href="javascript:;" class="btn btn-danger btn-del btn-disabled disabled {:$auth->check('classification/classification/del')?'':'hide'}" title="{:__('Delete')}" ><i class="fa fa-trash"></i> {:__('Delete')}</a><a href="javascript:;" class="btn btn-danger btn-toggle-all"><i class="fa fa-plus"></i> {:__('Toggle all')}</a></div><table id="table" class="table table-striped table-bordered table-hover table-nowrap"data-operate-edit="{:$auth->check('classification/classification/edit')}"data-operate-del="{:$auth->check('classification/classification/del')}"width="100%"></table></div></div></div></div>
</div>

添加add.html

<form id="add-form" class="form-horizontal form-ajax" role="form" data-toggle="validator" method="POST" action="">{:token()}<div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Ismenu')}:</label><div class="col-xs-12 col-sm-8">{:build_radios('row[ismenu]', ['1'=>__('Yes'), '0'=>__('No')])}</div></div><div class="form-group"><label  class="control-label col-xs-12 col-sm-2">{:__('Parent')}:</label><div class="col-xs-12 col-sm-8">{:build_select('row[pid]', $ruledata, null, ['class'=>'form-control', 'required'=>''])}</div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Promotion_platform')}:</label><div class="col-xs-12 col-sm-8"><input id="c-promotion_platform" class="form-control" name="row[promotion_platform]" type="text" value="{$row.promotion_platform|htmlentities}"></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Name')}:</label><div class="col-xs-12 col-sm-8"><input type="text" class="form-control" id="name" name="row[name]" value="" data-rule="required" /></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Keywords')}:</label><div class="col-xs-12 col-sm-8"><input id="c-keywords" class="form-control" name="row[keywords]" type="text" value=""></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Description')}:</label><div class="col-xs-12 col-sm-8"><input id="c-description" class="form-control" name="row[description]" type="text" value=""></div></div><div class="form-group" data-type="menu"><label for="remark" class="control-label col-xs-12 col-sm-2">{:__('Menutype')}:</label><div class="col-xs-12 col-sm-8">{:build_radios('row[menutype]', $menutypeList)}</div></div><div class="form-group hidden layer-footer"><div class="col-xs-2"></div><div class="col-xs-12 col-sm-8"><button type="submit" class="btn btn-primary btn-embossed disabled">{:__('OK')}</button><button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button></div></div>
</form>
{include file="auth/rule/tpl" /}

编辑edit.html

<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">{:token()}<div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Ismenu')}:</label><div class="col-xs-12 col-sm-8">{:build_radios('row[ismenu]', ['1'=>__('Yes'), '0'=>__('No')], $row['ismenu'])}</div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Parent')}:</label><div class="col-xs-12 col-sm-8">{:build_select('row[pid]', $ruledata, $row['pid'], ['class'=>'form-control', 'required'=>''])}</div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Promotion_platform')}:</label><div class="col-xs-12 col-sm-8"><input id="c-promotion_platform" class="form-control" name="row[promotion_platform]" type="text" value="{$row.promotion_platform|htmlentities}"></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Name')}:</label><div class="col-xs-12 col-sm-8"><input type="text" class="form-control" id="name" name="row[name]" value="{$row.name|htmlentities}" data-rule="required" /></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Keywords')}:</label><div class="col-xs-12 col-sm-8"><input id="c-keywords" class="form-control" name="row[keywords]" type="text" value="{$row.keywords|htmlentities}"></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Description')}:</label><div class="col-xs-12 col-sm-8"><input id="c-description" class="form-control" name="row[description]" type="text" value="{$row.description|htmlentities}"></div></div><div class="form-group" data-type="menu"><label for="remark" class="control-label col-xs-12 col-sm-2">{:__('Menutype')}:</label><div class="col-xs-12 col-sm-8">{:build_radios('row[menutype]', $menutypeList, $row['menutype'])}</div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Weigh')}:</label><div class="col-xs-12 col-sm-8"><input id="c-weigh" data-rule="required" class="form-control" name="row[weigh]" type="number" value="{$row.weigh|htmlentities}"></div></div><div class="form-group"><label class="control-label col-xs-12 col-sm-2">{:__('Status')}:</label><div class="col-xs-12 col-sm-8"><div class="radio">{foreach name="statusList" item="vo"}<label for="row[status]-{$key}"><input id="row[status]-{$key}" name="row[status]" type="radio" value="{$key}" {in name="key" value="$row.status"}checked{/in} /> {$vo}</label> {/foreach}</div></div></div><div class="form-group layer-footer"><label class="control-label col-xs-12 col-sm-2"></label><div class="col-xs-12 col-sm-8"><button type="submit" class="btn btn-primary btn-embossed disabled">{:__('OK')}</button></div></div>
</form>

对应js文件classification.js

define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {var Controller = {index: function () {// 初始化表格参数配置Table.api.init({extend: {index_url: 'classification/classification/index' + location.search,add_url: 'classification/classification/add',edit_url: 'classification/classification/edit',del_url: 'classification/classification/del',multi_url: 'classification/classification/multi',import_url: 'classification/classification/import',table: 'classification',}});var table = $("#table");// 初始化表格table.bootstrapTable({url: $.fn.bootstrapTable.defaults.extend.index_url,pk: 'id',sortName: 'weigh',fixedColumns: true,fixedRightNumber: 1,// sortName: '',// escape: false,// pagination: false,search: false,// commonSearch: false,rowAttributes: function (row, index) {return row.pid == 0 || Config.show ? {} : {style: 'display:none'};},columns: [[{checkbox: true},{field: 'id', title: __('Id')},{field: 'pid', title: __('Pid')},{field: 'promotion_platform', title: __('Promotion_platform'), formatter: Table.api.formatter.search},{field: 'name', title: __('Name'), operate: 'LIKE', align: 'left', formatter: Controller.api.formatter.title, clickToSelect: !false},{field: 'keywords', title: __('Keywords'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},{field: 'description', title: __('Description'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},{field: 'weigh', title: __('Weigh'), operate: false},{field: 'status', title: __('Status'), formatter: Table.api.formatter.status},{field: 'ismenu',title: __('Ismenu'),align: 'center',table: table,formatter: Table.api.formatter.toggle},{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}]]});// 为表格绑定事件Table.api.bindevent(table);var btnSuccessEvent = function (data, ret) {if ($(this).hasClass("btn-change")) {var index = $(this).data("index");var row = Table.api.getrowbyindex(table, index);row.ismenu = $("i.fa.text-gray", this).length > 0 ? 1 : 0;table.bootstrapTable("updateRow", {index: index, row: row});} else if ($(this).hasClass("btn-delone")) {if ($(this).closest("tr[data-index]").find("a.btn-node-sub.disabled").length > 0) {$(this).closest("tr[data-index]").remove();} else {table.bootstrapTable('refresh');}} else if ($(this).hasClass("btn-dragsort")) {table.bootstrapTable('refresh');}Fast.api.refreshmenu();return false;};//表格内容渲染前table.on('pre-body.bs.table', function (e, data) {var options = table.bootstrapTable("getOptions");options.escape = true;});//当内容渲染完成后table.on('post-body.bs.table', function (e, data) {var options = table.bootstrapTable("getOptions");options.escape = false;//点击切换/排序/删除操作后刷新左侧菜单$(".btn-change[data-id],.btn-delone,.btn-dragsort").data("success", btnSuccessEvent);});table.on('post-body.bs.table', function (e, settings, json, xhr) {//显示隐藏子节点$(">tbody>tr[data-index] > td", this).on('click', "a.btn-node-sub", function () {var status = $(this).data("shown") ? true : false;$("a[data-pid='" + $(this).data("id") + "']").each(function () {$(this).closest("tr").toggle(!status);});if (status) {$("a[data-pid='" + $(this).data("id") + "']").trigger("collapse");}$(this).data("shown", !status);$("i", this).toggleClass("fa-caret-down").toggleClass("fa-caret-right");return false;});});//隐藏子节点$(document).on("collapse", ".btn-node-sub", function () {if ($("i", this).length > 0) {$("a[data-pid='" + $(this).data("id") + "']").trigger("collapse");}$("i", this).removeClass("fa-caret-down").addClass("fa-caret-right");$(this).data("shown", false);$(this).closest("tr").toggle(false);});//批量删除后的回调$(".toolbar > .btn-del,.toolbar .btn-more~ul>li>a").data("success", function (e) {Fast.api.refreshmenu();});//展开隐藏一级$(document.body).on("click", ".btn-toggle", function (e) {$("a[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();var that = this;var show = $("i", that).hasClass("fa-chevron-down");$("i", that).toggleClass("fa-chevron-down", !show).toggleClass("fa-chevron-up", show);$("a[data-id][data-pid][data-pid!=0]").not('.disabled').closest("tr").toggle(show);$(".btn-node-sub[data-pid=0]").data("shown", show);});//展开隐藏全部$(document.body).on("click", ".btn-toggle-all", function (e) {var that = this;var show = $("i", that).hasClass("fa-plus");$("i", that).toggleClass("fa-plus", !show).toggleClass("fa-minus", show);$(".btn-node-sub:not([data-pid=0])").closest("tr").toggle(show);$(".btn-node-sub").data("shown", show);$(".btn-node-sub > i").toggleClass("fa-caret-down", show).toggleClass("fa-caret-right", !show);});},add: function () {Controller.api.bindevent();},edit: function () {Controller.api.bindevent();},api: {formatter: {title: function (value, row, index) {value = value.toString().replace(/(&|&amp;)nbsp;/g, '&nbsp;');var caret = row.haschild == 1 || row.ismenu == 1 ? '<i class="fa fa-caret-right"></i>' : '';value = value.indexOf("&nbsp;") > -1 ? value.replace(/(.*)&nbsp;/, "$1" + caret) : caret + value;value = !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;return '<a href="javascript:;" data-id="' + row.id + '" data-pid="' + row.pid + '" class="'+ (row.haschild == 1 || row.ismenu == 1 ? 'text-primary' : 'disabled') + ' btn-node-sub">' + value + '</a>';},name: function (value, row, index) {return !row.ismenu || row.status == 'hidden' ? "<span class='text-muted'>" + value + "</span>" : value;},icon: function (value, row, index) {return '<span class="' + (!row.ismenu || row.status == 'hidden' ? 'text-muted' : '') + '"><i class="' + value + '"></i></span>';}},bindevent: function () {$(document).on('click', "input[name='row[ismenu]']", function () {var name = $("input[name='row[name]']");var ismenu = $(this).val() == 1;name.prop("placeholder", ismenu ? name.data("placeholder-menu") : name.data("placeholder-node"));$('div[data-type="menu"]').toggleClass("hidden", !ismenu);});$("input[name='row[ismenu]']:checked").trigger("click");var iconlist = [];var iconfunc = function () {Layer.open({type: 1,area: ['99%', '98%'], //宽高content: Template('chooseicontpl', {iconlist: iconlist})});};Form.api.bindevent($("form[role=form]"), function (data) {Fast.api.refreshmenu();});$(document).on('change keyup', "#icon", function () {$(this).prev().find("i").prop("class", $(this).val());});$(document).on('click', ".btn-search-icon", function () {if (iconlist.length == 0) {$.get(Config.site.cdnurl + "/assets/libs/font-awesome/less/variables.less", function (ret) {var exp = /fa-var-(.*):/ig;var result;while ((result = exp.exec(ret)) != null) {iconlist.push(result[1]);}iconfunc();});} else {iconfunc();}});$(document).on('click', '#chooseicon ul li', function () {$("input[name='row[icon]']").val('fa fa-' + $(this).data("font")).trigger("change");Layer.closeAll();});$(document).on('keyup', 'input.js-icon-search', function () {$("#chooseicon ul li").show();if ($(this).val() != '') {$("#chooseicon ul li:not([data-font*='" + $(this).val() + "'])").hide();}});}}};return Controller;
});

特别修改(支持搜索)

一. extend\fast\Tree.php中getTreeArray()

    /**** 获取树状数组* @param string $myid 要查询的ID* @param string $itemprefix 前缀* @return array*/public function getTreeArray($myid, $itemprefix = '', $search_id_arr = []){$childs = $this->getChild($myid, $search_id_arr);$n = 0;$data = [];$number = 1;if ($childs) {$total = count($childs);foreach ($childs as $id => $value) {$j = $k = '';if ($number == $total) {$j .= $this->icon[2];$k = $itemprefix ? $this->nbsp : '';} else {$j .= $this->icon[1];$k = $itemprefix ? $this->icon[0] : '';}$spacer = $itemprefix ? $itemprefix . $j : '';$value['spacer'] = $spacer;$data[$n] = $value;$data[$n]['childlist'] = $this->getTreeArray($id, $itemprefix . $k . $this->nbsp);$n++;$number++;}}return $data;}

二.extend\fast\Tree.php中getChild()

    /*** 得到子级数组* @param int* @return array*/public function getChild($myid, $search_id_arr = []){$newarr = [];foreach ($this->arr as $value) {if (!isset($value['id'])) {continue;}if ($search_id_arr) {if (in_array($value[$this->pidname], $search_id_arr)) {$newarr[$value['id']] = $value;}} else {if ($value[$this->pidname] == $myid) {$newarr[$value['id']] = $value;}}}return $newarr;}

代码不是很精简, 感兴趣的可自行优化!!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/838361.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux/Debian/Ubuntu系统中apt/apt-get的20个常见命令

apt的20个常见命令 以下是apt的20个常见命令&#xff1a; apt install <package>&#xff1a;安装软件包。apt remove <package>&#xff1a;移除软件包。apt purge <package>&#xff1a;移除软件包及其配置文件。apt update&#xff1a;更新可用软件包列…

学习前端第三十七天(静态属性静态方法、类检查、错误处理)

一、静态属性和静态方法 1、静态属性静态方法 在属性和方法前加上static&#xff0c;创建属于类自己的属性和方法 class Person {// 加static&#xff0c;属于类自己的static name "xc"; // 类的name属性static height 183; // 类的height属性static age 20;…

设计模式14- Chain of Responsibility Method 责任链设计模式

设计模式14- Chain of Responsibility Method 责任链设计模式 1.定义 责任链模式&#xff08;Chain of Responsibility Pattern&#xff09;是一种行为型设计模式。它通过把请求从一个对象传到链条中的下一个对象的方式&#xff0c;直到请求被处理完毕&#xff0c;以实现解耦…

weblogic 任意文件上传 CVE-2018-2894

一、漏洞简介 在 Weblogic Web Service Test Page 中存在一处任意文件上传漏洞&#xff0c; Web Service Test Page 在"生产模式"下默认不开启&#xff0c;所以该漏洞有一定限制。利用该 漏洞&#xff0c;可以上传任意 jsp 文件&#xff0c;进而获取服务器权限。 二…

[链表专题]力扣141, 142

1. 力扣141 : 环形链表 题 : 给你一个链表的头节点 head &#xff0c;判断链表中是否有环。 如果链表中有某个节点&#xff0c;可以通过连续跟踪 next 指针再次到达&#xff0c;则链表中存在环。 为了表示给定链表中的环&#xff0c;评测系统内部使用整数 pos 来表示链表尾…

数据结构------二叉树经典习题1

博主主页: 码农派大星. 关注博主带你了解更多数据结构知识 1判断相同的树 OJ链接 这道题相对简单,运用我们常规的递归写法就能轻松写出 所以我们解题思路应该这样想: 1.如果p为空&#xff0c;q为空&#xff0c;那么就是两颗空树肯定相等 2.如果一个树为空另一棵树不为空那么…

2024年,诺基亚手机发售仅一天就售罄

在智能手机越来越同质化的今天&#xff0c;各家都只卷性能和相机&#xff0c;大火的 AI 对于咱来说好像实用性又不太大&#xff0c;机圈属实整的有点儿无聊。 不过在阿红这两天上网冲浪的时候&#xff0c;一个陌生又熟悉的名字闯入了我的视线&#xff0c;——诺基亚&#xff08…

维护表空间中的数据文件

目录 向表空间中添加数据文件 从表空间中删除数据文件 删除users表空间中的users02.dbf数据文件 对数据文件的自动扩展设置 Oracle从入门到总裁:​​​​​​https://blog.csdn.net/weixin_67859959/article/details/135209645 维护表空间中的数据文件主要包括向表空间中添…

深度学习中常见的九种交叉验证方法汇总

目录 1. K折交叉验证&#xff08;K-fold cross-validation&#xff09; 2. 分层K折交叉验证&#xff08;Stratified K-fold cross-validation&#xff09; 3. 时间序列交叉验证&#xff08;Time Series Split&#xff09; 4. 留一交叉验证&#xff08;Leave-One-Out Cross-…

8个迹象表明你需要一台新笔记本电脑,看一下你的笔记本是否有其中一个

序言 当你第一次打开你的笔记本电脑的盒子时,它会以最高性能运行,电池寿命更长,过热最小,资源使用效率高。然而,随着笔记本电脑的老化,它将不能满足预期用途。以下几个迹象表明,可能是时候寻找并投资一款新设备了。 你的设备不再具有预期用途 如果你的笔记本电脑不再…

Java内存模式以及volatile关键字的使用

1.Java内存模型 &#xff08;1&#xff09;Java 内存模型&#xff08;Java Memory Model&#xff0c;简称 JMM&#xff09;&#xff0c;它是一个抽象的概念&#xff0c;JMM是和多线程相关的&#xff0c;它是一组规范&#xff0c;描述了一组规则&#xff0c;定义了多线程对共享…

“图生视频”技术创新:剪贴画秒变动画生成的实验验证与分析

在最近的研究进展中&#xff0c;AniClipart系统的问世标志着文本到视频生成技术的一个重要里程碑。这一系统由香港城市大学和莫纳什大学的研究者们共同开发&#xff0c;旨在解决将静态剪贴画图像根据文本提示自动转换成动画序列的挑战。传统的动画制作流程繁琐且耗时&#xff0…

2024中国(重庆)商旅文化川渝美食暨消费品博览会8月举办

2024中国(重庆)商旅文化川渝美食暨消费品博览会8月举办 邀请函 主办单位&#xff1a; 中国航空学会 重庆市南岸区人民政府 招商执行单位&#xff1a; 重庆港华展览有限公司 展会背景&#xff1a; 2024中国航空科普大会暨第八届全国青少年无人机大赛在重庆举办&#xff…

用友GRP-U8 bx_dj_check.jsp SQL注入漏洞复现(XVE-2024-10537)

0x01 免责声明 请勿利用文章内的相关技术从事非法测试&#xff0c;由于传播、利用此文所提供的信息而造成的任何直接或者间接的后果及损失&#xff0c;均由使用者本人负责&#xff0c;作者不为此承担任何责任。工具来自网络&#xff0c;安全性自测&#xff0c;如有侵权请联系删…

NSSCTF | [SWPUCTF 2021 新生赛]babyrce

打开题目&#xff0c;显示了一个php脚本 我们来分析一下这个脚本是什么意思 <?php error_reporting(0); header("Content-Type:text/html;charsetutf-8"); highlight_file(__FILE__); if($_COOKIE[admin]1) {include "../next.php"; } elseecho &quo…

传统FTP弊端显现 国产ftp要如何选择?

FTP&#xff08;File Transfer Protocol&#xff09;是一个用于在网络上的计算机之间传输文件的协议。它属于网络协议组的应用层&#xff0c;主要用于文件的上传、下载和文件管理操作&#xff0c;是一种比较通用、操作也比较简单的传输方式。不过随着国产化大浪潮的推进&#x…

【线性系统理论】笔记三

能控性判别 约当标准型 总结&#xff1a; 秩的判据 能观性判别 秩判据 能控Ⅰ型&能控Ⅱ型 1型 2型 能控性分解&能观型分解

vue+element 验证输入框是否包含特殊字符(赠送ip+域名双验证判断)

1 效果: 2 添加element自定义验证方法 rules{ dbConfig.address: [ { required: true, validator: validatehost_ip, trigger: blur } ] } 3 添加对应方法 var validatehost_ip (rule, value, callback) > {if (!value) {callback(new Error(地址不可为空))} else {//验…

OpenFeign替代品:Spring6 新增的http exchange 如何设置拦截器

前言 OpenFeign已经被认为是功能完备了&#xff0c;后续不再更新新功能&#xff0c;新出来的 http exchange 可以实现类似的功能。 在使用Openfeign的时候&#xff0c;我们通常会使用它的拦截器来实现认证token的填写等统一处理&#xff0c;那么&#xff0c;在使用Http exchan…

MY SQL 实验四:

一、实验目的 通过该实验掌握较复杂的SQL 查询数据库方法&#xff0c;包括嵌套查询&#xff0c;相关与不相关子查询&#xff0c;连接的多种方法等。 二、实验原理 数据库查询是数据库的核心操作。SQL语言提供了SELECT语句进行数据库的查询。 SELECT[ALL|DISTINCT]<目标列表达…