Kivy.garden.NavigationDrawer

totally copied from github opensource code. Just a translation and ideas with idividuals ideas to share its use for all people using chinese.

Copyright © 2013 Alexander Taylor
开源免责免费使用声明:
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the “Software”), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software, and to permit persons to whom the Software is

#furnished to do so, subject to the following conditions:

#The above copyright notice and this permission notice shall be included in
#all copies or substantial portions of the Software.
substantial 美/səbˈstænʃ(ə)l/  adj 真实的; 
portion 美/ˈpɔːrʃ(ə)n/ n.(责任、过失、职责等的)一份,一部分;<法律>(根据法律赠与或遗留给继承人的)一份财产;

#THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
#THE SOFTWARE.

‘’'NavigationDrawer

The NavigationDrawer widget provides a hidden panel view designed to
duplicate the popular Android layout. The user views one main widget
but can slide from the left of the screen to view a second, previously
hidden widget. The transition between open/closed is smoothly
animated, with the parameters (anim time, panel width, touch
detection) all user configurable. If the panel is released without
being fully open or closed, it animates to an appropriate
configuration.
这NavigationDrawer组件儿 提供了一个隐藏的panel view仪表盘视图,这
视图是被设计来复制流行的Android布局的。使用者观看一个主要的组件,
但是可以在一秒内从屏幕的左边滑动到视图,先前地被隐藏的组件。
【就是说咱看着当前一个屏幕呢,可以滑动到另一个之前被隐藏好的组件儿】
这在打开/关闭地滑动转变间是顺畅的动画儿,掺和着一些元素儿(anim time,
动画时间,panel width, 仪表盘宽度,touch detection触发事件)所有的是
使用者可构建的。如果这仪表盘儿被展示没全乎或者没关全乎,(留着一绺子)
,它动画到一个合适的配置。 【就说配置可以调】

NavigationDrawer supports many different animation properties,
including moving one or both of the side/main panels, darkening
either/both widgets, changing side panel opacity, and changing which
widget is on top. The user can edit these individually to taste (this
is enough rope to hang oneself, it’s easy to make a useless or silly
configuration!), or use one of a few preset animations.

NavigationDrawer支持许多不同的动画属性,包括移动一个或多个的
幻灯片/主仪表盘,也可也已使这两者变黑1个或多个组件,改变幻灯片
仪表盘透明度,和改变哪个组件在上。使用者可以自己改变这些来尝试
(这是足够的大圈儿来掉某个东西了,也非常简单来制作一个没啥用或
呆板的配置),或使用些许里的一个原开发者已经事先准备好的动画儿。

The hidden panel might normally a set of navigation buttons, but the
implementation lets the user use any widget(s).

隐藏的仪表盘可能主要使一些导航按钮,但执行

The first widget added to the NavigationDrawer is automatically used
as the side panel, and the second widget as the main panel. No further
widgets can be added, further changes are left to the user via editing
the panel widgets.

Usage summary

  • The first widget added to a NavigationDrawer is used as the hidden
    side panel.
  • The second widget added is used as the main panel.
  • Both widgets can be removed with remove_widget, or alternatively
    set/removed with set_main_panel and set_side_panel.
  • The hidden side panel can be revealed by dragging from the left of
    the NavigationDrawer. The touch detection width is the
    touch_accept_width property.
  • Every animation property is user-editable, or default animations
    can be chosen by setting anim_type.

See the example and docstrings for information on individual properties.

Example::

class ExampleApp(App):

def build(self):navigationdrawer = NavigationDrawer()side_panel = BoxLayout(orientation='vertical')side_panel.add_widget(Label(text='Panel label'))side_panel.add_widget(Button(text='A button'))side_panel.add_widget(Button(text='Another button'))navigationdrawer.add_widget(side_panel)label_head = ('[b]Example label filling main panel[/b]\n\n[color=ff0000](p''ull from left to right!)[/color]\n\nIn this example, the le''ft panel is a simple boxlayout menu, and this main panel is'' a BoxLayout with a label and example image.\n\nSeveral pre''set layouts are available (see buttons below), but users ma''y edit every parameter for much more customisation.')main_panel = BoxLayout(orientation='vertical')label_bl = BoxLayout(orientation='horizontal')label = Label(text=label_head, font_size='15sp',markup=True, valign='top')label_bl.add_widget(Widget(size_hint_x=None, width=dp(10)))label_bl.add_widget(label)label_bl.add_widget(Widget(size_hint_x=None, width=dp(10)))main_panel.add_widget(Widget(size_hint_y=None, height=dp(10)))main_panel.add_widget(label_bl)main_panel.add_widget(Widget(size_hint_y=None, height=dp(10)))navigationdrawer.add_widget(main_panel)label.bind(size=label.setter('text_size'))def set_anim_type(name):navigationdrawer.anim_type = namemodes_layout = BoxLayout(orientation='horizontal')modes_layout.add_widget(Label(text='preset\nanims:'))slide_an = Button(text='slide_\nabove_\nanim')slide_an.bind(on_press=lambda j: set_anim_type('slide_above_anim'))slide_sim = Button(text='slide_\nabove_\nsimple')slide_sim.bind(on_press=lambda j: set_anim_type('slide_above_simple'))fade_in_button = Button(text='fade_in')fade_in_button.bind(on_press=lambda j: set_anim_type('fade_in'))reveal_button = Button(text='reveal_\nbelow_\nanim')reveal_button.bind(on_press=lambda j: set_anim_type('reveal_below_anim'))slide_button = Button(text='reveal_\nbelow_\nsimple')slide_button.bind(on_press=lambda j: set_anim_type('reveal_below_simple'))modes_layout.add_widget(slide_an)modes_layout.add_widget(slide_sim)modes_layout.add_widget(fade_in_button)modes_layout.add_widget(reveal_button)modes_layout.add_widget(slide_button)main_panel.add_widget(modes_layout)button = Button(text='toggle NavigationDrawer state (animate)',size_hint_y=0.2)button.bind(on_press=lambda j: navigationdrawer.toggle_state())button2 = Button(text='toggle NavigationDrawer state (jump)',size_hint_y=0.2)button2.bind(on_press=lambda j: navigationdrawer.toggle_state(False))button3 = Button(text='toggle _main_above', size_hint_y=0.2)button3.bind(on_press=navigationdrawer.toggle_main_above)main_panel.add_widget(button)main_panel.add_widget(button2)main_panel.add_widget(button3)return navigationdrawerExampleApp().run()

‘’’

all = (‘NavigationDrawer’, )

from kivy.animation import Animation
from kivy.uix.widget import Widget
from kivy.uix.stencilview import StencilView
from kivy.metrics import dp
from kivy.clock import Clock
from kivy.properties import (ObjectProperty, NumericProperty, OptionProperty,
BooleanProperty, StringProperty)
from kivy.resources import resource_add_path
from kivy.lang import Builder
import os.path

resource_add_path(os.path.dirname(file))

Builder.load_string(‘’’
:
size_hint: (1,1)
_side_panel: sidepanel
_main_panel: mainpanel
_join_image: joinimage
side_panel_width: min(dp(250), 0.5self.width)
BoxLayout:
id: sidepanel
y: root.y
x: root.x -
(1-root._anim_progress)

root.side_panel_init_offset*root.side_panel_width
height: root.height
width: root.side_panel_width
opacity: root.side_panel_opacity +
(1-root.side_panel_opacity)root._anim_progress
canvas:
Color:
rgba: (0,0,0,1)
Rectangle:
pos: self.pos
size: self.size
canvas.after:
Color:
rgba: (0,0,0,(1-root._anim_progress)root.side_panel_darkness)
Rectangle:
size: self.size
pos: self.pos
BoxLayout:
id: mainpanel
x: root.x +
root._anim_progress *
root.side_panel_width *
root.main_panel_final_offset
y: root.y
size: root.size
canvas:
Color:
rgba: (0,0,0,1)
Rectangle:
pos: self.pos
size: self.size
canvas.after:
Color:
rgba: (0,0,0,root._anim_progress
root.main_panel_darkness)
Rectangle:
size: self.size
pos: self.pos
Image:
id: joinimage
opacity: min(sidepanel.opacity, 0 if root._anim_progress < 0.00001
else min(root._anim_progress
40,1))
source: root._choose_image(root._main_above, root.separator_image)
mipmap: False
width: root.separator_image_width
height: root._side_panel.height
x: (mainpanel.x - self.width + 1) if root._main_above
else (sidepanel.x + sidepanel.width - 1)
y: root.y
allow_stretch: True
keep_ratio: False
‘’')

class NavigationDrawerException(Exception):
‘’'Raised when add_widget or remove_widget called incorrectly on a
NavigationDrawer.

'''

class NavigationDrawer(StencilView):
‘’'Widget taking two children, a side panel and a main panel,
displaying them in a way that replicates the popular Android
functionality. See module documentation for more info.

'''# Internal references for side, main and image widgets
_side_panel = ObjectProperty()
_main_panel = ObjectProperty()
_join_image = ObjectProperty()side_panel = ObjectProperty(None, allownone=True)
'''Automatically bound to whatever widget is added as the hidden panel.'''
main_panel = ObjectProperty(None, allownone=True)
'''Automatically bound to whatever widget is added as the main panel.'''# Appearance properties
side_panel_width = NumericProperty()
'''The width of the hidden side panel. Defaults to the minimum of
250dp or half the NavigationDrawer width.'''
separator_image = StringProperty('')
'''The path to an image that will be placed between the side and main
panels. If set to `''`, defaults to a gradient from black to
transparent in an appropriate direction (left->right if side panel
above main, right->left if main panel on top).'''
separator_image_width = NumericProperty(dp(10))
'''The width of the separator image. Defaults to 10dp'''# Touch properties
touch_accept_width = NumericProperty('14dp')
'''Distance from the left of the NavigationDrawer in which to grab the
touch and allow revealing of the hidden panel.'''
_touch = ObjectProperty(None, allownone=True)  # The currently active touch# Animation properties
state = OptionProperty('closed', options=('open', 'closed'))
'''Specifies the state of the widget. Must be one of 'open' or
'closed'. Setting its value automatically jumps to the relevant state,
or users may use the anim_to_state() method to animate the
transition.'''

设定动画页面转变所用时间 anim_time

anim_time = NumericProperty(0.3)
'''The time taken for the panel to slide to the open/closed state when
released or manually animated with anim_to_state.'''
min_dist_to_open = NumericProperty(0.7)
'''Must be between 0 and 1. Specifies the fraction of the hidden panel
width beyond which the NavigationDrawer will relax to open state when
released. Defaults to 0.7.'''
_anim_progress = NumericProperty(0)  # Internal state controlling# widget positions
_anim_init_progress = NumericProperty(0)# Animation controls
top_panel = OptionProperty('main', options=['main', 'side'])
'''Denotes which panel should be drawn on top of the other. Must be
one of 'main' or 'side'. Defaults to 'main'.'''
_main_above = BooleanProperty(True)side_panel_init_offset = NumericProperty(0.5)
'''Intial offset (to the left of the widget) of the side panel, in
units of its total width. Opening the panel moves it smoothly to its
final position at the left of the screen.'''side_panel_darkness = NumericProperty(0.8)
'''Controls the fade-to-black of the side panel in its hidden
state. Must be between 0 (no fading) and 1 (fades to totally
black).'''side_panel_opacity = NumericProperty(1)
'''Controls the opacity of the side panel in its hidden state. Must be
between 0 (fade to transparent) and 1 (no transparency)'''main_panel_final_offset = NumericProperty(1)
'''Final offset (to the right of the normal position) of the main
panel, in units of the side panel width.'''main_panel_darkness = NumericProperty(0)
'''Controls the fade-to-black of the main panel when the side panel is
in its hidden state. Must be between 0 (no fading) and 1 (fades to
totally black).
'''opening_transition = StringProperty('out_cubic')
'''The name of the animation transition type to use when animating to
an open state. Defaults to 'out_cubic'.'''closing_transition = StringProperty('in_cubic')
'''The name of the animation transition type to use when animating to
a closed state. Defaults to 'out_cubic'.'''

设定动画转变效果 anim_type

anim_type = OptionProperty('reveal_from_below',options=['slide_above_anim','slide_above_simple','fade_in','reveal_below_anim','reveal_below_simple',])
'''The default animation type to use. Several options are available,
modifying all possibly animation properties including darkness,
opacity, movement and draw height. Users may also (and are
encouaged to) edit these properties individually, for a vastly
larger range of possible animations. Defaults to reveal_below_anim.
'''def __init__(self, **kwargs):super(NavigationDrawer, self).__init__(**kwargs)Clock.schedule_once(self.on__main_above, 0)def on_anim_type(self, *args):anim_type = self.anim_typeif anim_type == 'slide_above_anim':self.top_panel = 'side'self.side_panel_darkness = 0self.side_panel_opacity = 1self.main_panel_final_offset = 0.5self.main_panel_darkness = 0.5self.side_panel_init_offset = 1if anim_type == 'slide_above_simple':self.top_panel = 'side'self.side_panel_darkness = 0self.side_panel_opacity = 1self.main_panel_final_offset = 0self.main_panel_darkness = 0self.side_panel_init_offset = 1elif anim_type == 'fade_in':self.top_panel = 'side'self.side_panel_darkness = 0self.side_panel_opacity = 0self.main_panel_final_offset = 0self.main_panel_darkness = 0self.side_panel_init_offset = 0.5elif anim_type == 'reveal_below_anim':self.top_panel = 'main'self.side_panel_darkness = 0.8self.side_panel_opacity = 1self.main_panel_final_offset = 1self.main_panel_darkness = 0self.side_panel_init_offset = 0.5elif anim_type == 'reveal_below_simple':self.top_panel = 'main'self.side_panel_darkness = 0self.side_panel_opacity = 1self.main_panel_final_offset = 1self.main_panel_darkness = 0self.side_panel_init_offset = 0def on_top_panel(self, *args):if self.top_panel == 'main':self._main_above = Trueelse:self._main_above = Falsedef on__main_above(self, *args):newval = self._main_abovemain_panel = self._main_panelside_panel = self._side_panelself.canvas.remove(main_panel.canvas)self.canvas.remove(side_panel.canvas)if newval:self.canvas.insert(0, main_panel.canvas)self.canvas.insert(0, side_panel.canvas)else:self.canvas.insert(0, side_panel.canvas)self.canvas.insert(0, main_panel.canvas)def toggle_main_above(self, *args):if self._main_above:self._main_above = Falseelse:self._main_above = Truedef add_widget(self, widget):if len(self.children) == 0:super(NavigationDrawer, self).add_widget(widget)self._side_panel = widgetelif len(self.children) == 1:super(NavigationDrawer, self).add_widget(widget)self._main_panel = widgetelif len(self.children) == 2:super(NavigationDrawer, self).add_widget(widget)self._join_image = widgetelif self.side_panel is None:self._side_panel.add_widget(widget)self.side_panel = widgetelif self.main_panel is None:self._main_panel.add_widget(widget)self.main_panel = widgetelse:raise NavigationDrawerException('Can\'t add more than two widgets''directly to NavigationDrawer')def remove_widget(self, widget):if widget is self.side_panel:self._side_panel.remove_widget(widget)self.side_panel = Noneelif widget is self.main_panel:self._main_panel.remove_widget(widget)self.main_panel = Noneelse:raise NavigationDrawerException('Widget is neither the side or main panel, can\'t remove it.')def set_side_panel(self, widget):'''Removes any existing side panel widgets, and replaces them with theargument `widget`.'''# Clear existing side panel entriesif len(self._side_panel.children) > 0:for child in self._side_panel.children:self._side_panel.remove(child)# Set new side panelself._side_panel.add_widget(widget)self.side_panel = widgetdef set_main_panel(self, widget):'''Removes any existing main panel widgets, and replaces them with theargument `widget`.'''# Clear existing side panel entriesif len(self._main_panel.children) > 0:for child in self._main_panel.children:self._main_panel.remove_widget(child)# Set new side panelself._main_panel.add_widget(widget)self.main_panel = widgetdef on__anim_progress(self, *args):if self._anim_progress > 1:self._anim_progress = 1elif self._anim_progress < 0:self._anim_progress = 0if self._anim_progress >= 1:self.state = 'open'elif self._anim_progress <= 0:self.state = 'closed'def on_state(self, *args):Animation.cancel_all(self)if self.state == 'open':self._anim_progress = 1else:self._anim_progress = 0def anim_to_state(self, state):'''If not already in state `state`, animates smoothly to it, takingthe time given by self.anim_time. State may be either 'open'or 'closed'.'''if state == 'open':anim = Animation(_anim_progress=1,duration=self.anim_time,t=self.closing_transition)anim.start(self)elif state == 'closed':anim = Animation(_anim_progress=0,duration=self.anim_time,t=self.opening_transition)anim.start(self)else:raise NavigationDrawerException('Invalid state received, should be one of `open` or `closed`')def toggle_state(self, animate=True):'''Toggles from open to closed or vice versa, optionally animating orsimply jumping.'''if self.state == 'open':if animate:self.anim_to_state('closed')else:self.state = 'closed'elif self.state == 'closed':if animate:self.anim_to_state('open')else:self.state = 'open'def on_touch_down(self, touch):col_self = self.collide_point(*touch.pos)col_side = self._side_panel.collide_point(*touch.pos)col_main = self._main_panel.collide_point(*touch.pos)if self._anim_progress < 0.001:  # i.e. closedvalid_region = (self.x <=touch.x <=(self.x + self.touch_accept_width))if not valid_region:self._main_panel.on_touch_down(touch)return Falseelse:if col_side and not self._main_above:self._side_panel.on_touch_down(touch)return Falsevalid_region = (self._main_panel.x <=touch.x <=(self._main_panel.x + self._main_panel.width))if not valid_region:if self._main_above:if col_main:self._main_panel.on_touch_down(touch)elif col_side:self._side_panel.on_touch_down(touch)else:if col_side:self._side_panel.on_touch_down(touch)elif col_main:self._main_panel.on_touch_down(touch)return FalseAnimation.cancel_all(self)self._anim_init_progress = self._anim_progressself._touch = touchtouch.ud['type'] = self.statetouch.ud['panels_jiggled'] = False  # If user moved panels back# and forth, don't default# to close on touch releasetouch.grab(self)return Truedef on_touch_move(self, touch):if touch is self._touch:dx = touch.x - touch.oxself._anim_progress = max(0, min(self._anim_init_progress +(dx / self.side_panel_width), 1))if self._anim_progress < 0.975:touch.ud['panels_jiggled'] = Trueelse:super(NavigationDrawer, self).on_touch_move(touch)returndef on_touch_up(self, touch):if touch is self._touch:self._touch = Noneinit_state = touch.ud['type']touch.ungrab(self)jiggled = touch.ud['panels_jiggled']if init_state == 'open' and not jiggled:if self._anim_progress >= 0.975:self.anim_to_state('closed')else:self._anim_relax()else:self._anim_relax()else:super(NavigationDrawer, self).on_touch_up(touch)returndef _anim_relax(self):'''Animates to the open or closed position, depending on whether thecurrent position is past self.min_dist_to_open.'''if self._anim_progress > self.min_dist_to_open:self.anim_to_state('open')else:self.anim_to_state('closed')def _choose_image(self, *args):'''Chooses which image to display as the main/side separator, based on_main_above.'''if self.separator_image:return self.separator_imageif self._main_above:return 'navigationdrawer_gradient_rtol.png'else:return 'navigationdrawer_gradient_ltor.png'

if name == ‘main’:
from kivy.base import runTouchApp
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.label import Label
from kivy.uix.button import Button
from kivy.uix.popup import Popup
from kivy.uix.image import Image
from kivy.core.window import Window

navigationdrawer = NavigationDrawer()side_panel = BoxLayout(orientation='vertical')
side_panel.add_widget(Label(text='Panel label'))
popup = Popup(title='Sidebar popup',content=Label(text='You clicked the sidebar\npopup button'),size_hint=(0.7, 0.7))
first_button = Button(text='Popup\nbutton')
first_button.bind(on_release=popup.open)
side_panel.add_widget(first_button)
side_panel.add_widget(Button(text='Another\nbutton'))
navigationdrawer.add_widget(side_panel)label_head = ('[b]Example label filling main panel[/b]\n\n[color=ff0000](p''ull from left to right!)[/color]\n\nIn this example, the le''ft panel is a simple boxlayout menu, and this main panel is'' a BoxLayout with a label and example image.\n\nSeveral pre''set layouts are available (see buttons below), but users ma''y edit every parameter for much more customisation.')
main_panel = BoxLayout(orientation='vertical')
label_bl = BoxLayout(orientation='horizontal')
label = Label(text=label_head, font_size='15sp',markup=True, valign='top')
label_bl.add_widget(Widget(size_hint_x=None, width=dp(10)))
label_bl.add_widget(label)
label_bl.add_widget(Widget(size_hint_x=None, width=dp(10)))
main_panel.add_widget(Widget(size_hint_y=None, height=dp(10)))
main_panel.add_widget(label_bl)
main_panel.add_widget(Widget(size_hint_y=None, height=dp(10)))
navigationdrawer.add_widget(main_panel)
label.bind(size=label.setter('text_size'))def set_anim_type(name):navigationdrawer.anim_type = namedef set_transition(name):navigationdrawer.opening_transition = namenavigationdrawer.closing_transition = namemodes_layout = BoxLayout(orientation='horizontal')
modes_layout.add_widget(Label(text='preset\nanims:'))
slide_an = Button(text='slide_\nabove_\nanim')
slide_an.bind(on_press=lambda j: set_anim_type('slide_above_anim'))
slide_sim = Button(text='slide_\nabove_\nsimple')
slide_sim.bind(on_press=lambda j: set_anim_type('slide_above_simple'))
fade_in_button = Button(text='fade_in')
fade_in_button.bind(on_press=lambda j: set_anim_type('fade_in'))
reveal_button = Button(text='reveal_\nbelow_\nanim')
reveal_button.bind(on_press=lambda j: set_anim_type('reveal_below_anim'))
slide_button = Button(text='reveal_\nbelow_\nsimple')
slide_button.bind(on_press=lambda j: set_anim_type('reveal_below_simple'))
modes_layout.add_widget(slide_an)
modes_layout.add_widget(slide_sim)
modes_layout.add_widget(fade_in_button)
modes_layout.add_widget(reveal_button)
modes_layout.add_widget(slide_button)
main_panel.add_widget(modes_layout)transitions_layout = BoxLayout(orientation='horizontal')
transitions_layout.add_widget(Label(text='anim\ntransitions'))
out_cubic = Button(text='out_cubic')
out_cubic.bind(on_press=lambda j: set_transition('out_cubic'))
in_quint = Button(text='in_quint')
in_quint.bind(on_press=lambda j: set_transition('in_quint'))
linear = Button(text='linear')
linear.bind(on_press=lambda j: set_transition('linear'))
out_sine = Button(text='out_sine')
out_sine.bind(on_press=lambda j: set_transition('out_sine'))
transitions_layout.add_widget(out_cubic)
transitions_layout.add_widget(in_quint)
transitions_layout.add_widget(linear)
transitions_layout.add_widget(out_sine)
main_panel.add_widget(transitions_layout)button = Button(text='toggle NavigationDrawer state (animate)',size_hint_y=0.2)
button.bind(on_press=lambda j: navigationdrawer.toggle_state())
button2 = Button(text='toggle NavigationDrawer state (jump)',size_hint_y=0.2)
button2.bind(on_press=lambda j: navigationdrawer.toggle_state(False))
button3 = Button(text='toggle _main_above', size_hint_y=0.2)
button3.bind(on_press=navigationdrawer.toggle_main_above)
main_panel.add_widget(button)
main_panel.add_widget(button2)
main_panel.add_widget(button3)Window.add_widget(navigationdrawer)runTouchApp()

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

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

相关文章

【SpringBoot项目开发】查看购物车和清空购物车实现

查看和清空购物车的注意事项&#xff1a; 需要查看登录用户购物车中所有的信息&#xff0c;但是请求参数中可以不包含用户id&#xff0c;因为请求时会附带一个token&#xff0c;从token中能解析到用户id。 return shoppingCartMapper.list(ShoppingCart.builder().userId(Bas…

GQL图查询语言:高效处理复杂图数据

GQL是一种新型的查询语言&#xff0c;它可以处理复杂图数据&#xff0c;以提供比传统 SQL更快、更高效的查询方式。GQL图查询语言具有可扩展性&#xff0c;可以使用最少的编程知识来访问图数据库。在本文中&#xff0c;我们将探讨 GQL的概念和实际使用案例。同时&#xff0c;我…

C++: 多态

目录 一、多态的概念 二、多态的定义及实现 2.1虚函数 2.2虚函数的重写 2.3多态的构成条件 2.4虚函数重写的两个例外 1.协变 2.析构函数的重写 2.5虚函数重写的实质 2.6override 和 final&#xff08;C11&#xff09; 1.final 2.override 2.7重载、覆盖&#xff0…

go语言之变量

go是静态类型语言&#xff0c;因此变量是具有明确类型的&#xff0c;编译器也会检查变量类型的正确性 我们从计算机系统的角度来讲&#xff0c;变量就是一段或者多段内存&#xff0c;用于存储数据 文章目录 变量声明标准格式简便格式不指定变量类型批量声明简短格式 匿名变量变…

http协议报文头部结构解释

http协议报文头部结构 请求报文 报文解释 请求报文由三部分组成&#xff1a;开始行、首部行、实体主体 开始行&#xff1a;请求方法&#xff08;get、post&#xff09;url版本 CRLE 方法描述GET请求指定页面信息&#xff0c;并返回实体主体HEAD类似get要求&#xff0c;只不…

WXML模板语法-条件渲染和列表渲染

一、条件渲染 1.wx:if 在小程序中&#xff0c;使用wx:if"{{condition}}"来判断是否需要渲染该代码块,也可以用wx:elif和wx:else来添加else判断 // pages/list/list.js Page({data: {type:1} })<!--pages/list/list.wxml--><view wx:if"{{type 1}}&…

504 Gateway Time-out

问题描述 做Excel导入的功能&#xff0c;由于Excel的数据比较多&#xff0c;需要做处理然后入库&#xff0c;数据量大概200万&#xff0c;所以毫无悬念的导入Excel接口调用超过了一分钟&#xff0c;并且报错&#xff1a;504 gateway timeout。 解决方案 nginx超时限制。路径…

与WAF的“相爱相杀”的RASP

用什么来保护Web应用的安全&#xff1f; 猜想大部分安全从业者都会回答&#xff1a;“WAF&#xff08;Web Application Firewall,应用程序防火墙&#xff09;。”不过RASP&#xff08;Runtime Application Self-Protection&#xff0c;应用运行时自我保护&#xff09;横空出世…

微信小程序-----基础加强(二)

能够知道如何安装和配置vant-weapp 组件库能够知道如何使用MobX实现全局数据共享能够知道如何对小程序的API 进行 Promise 化能够知道如何实现自定义tabBar 的效果 一.使用 npm 包 小程序对 npm 的支持与限制 目前&#xff0c;小程序中已经支持使用 npm 安装第三方包&#x…

采用Java语言开发的(云HIS医院系统源码+1+N模式,支撑运营,管理,决策多位一体)

采用Java语言开发的&#xff08;云HIS医院系统源码1N模式&#xff0c;支撑运营&#xff0c;管理&#xff0c;决策多位一体&#xff09; 是不是网页形式【B/S架构]才是云计算服务? 这是典型的误区! 只要符合上述描述的互联网服务都是云计算服务&#xff0c;并没有规定是网页…

东软联合福建省大数据集团打造“数据要素×医疗健康”服务新模式

5月23日&#xff0c;东软集团与福建省大数据集团有限公司在福州签订战略合作协议。 据「TMT星球」了解&#xff0c;双方将在健康医疗数据要素价值领域展开合作&#xff0c;通过大数据服务&#xff0c;赋能商业保险公司的产品设计和保险两核&#xff0c;打造“数据要素医疗健康…

安卓分身大师4.6.0解锁会员安卓14可用机型伪装双开多开

需登录解锁会员功能&#xff0c;除了加速进入不能&#xff0c; 其他主要功能都是可以使用&#xff0c;由于验证较多一些功能需要特定操作使用&#xff0c;进行伪装时请不要直接伪装&#xff0c;先生成成功后再进行自定义伪装&#xff01;链接&#xff1a;https://pan.baidu.com…

机器人非线性控制方法——线性化与解耦

机器人非线性控制方法是针对具有非线性特性的机器人系统所设计的一系列控制策略。其中&#xff0c;精确线性化控制和反演控制是两种重要的方法。 1. 非线性反馈控制 该控制律采用非线性反馈控制的方法&#xff0c;将控制输入 u 分解为两个部分&#xff1a; α(x): 这是一个与…

设计模式--观察者模式

观察者模式是一种行为设计模式&#xff0c;它定义了对象间的一种一对多的依赖关系&#xff0c;当一个对象的状态发生改变时&#xff0c;它的所有依赖者都会自动收到通知并更新。这种模式在许多应用场景中非常有用&#xff0c;例如在实现事件驱动编程、消息队列、发布-订阅模型以…

vue 引入 emoji 表情包

vue 引入 emoji 表情包 一、安装二、组件内使用 一、安装 npm install --save emoji-mart-vue二、组件内使用 import { Picker } from "emoji-mart-vue"; //引入组件<picker :include"[people,Smileys]" :showSearch"false" :showPreview&q…

秒杀系统如何设计?【面试准备】

秒杀系统如何设计&#xff1f;【面试准备】 前言版权推荐秒杀系统如何设计&#xff1f;库存如何扣减的设计支付-延时队列最后 前言 2023-9-1 16:23:31 公开发布于 2024-5-22 00:09:02 以下内容源自《【面试准备】》 仅供学习交流使用 版权 禁止其他平台发布时删除以下此话…

找钢集团亮相沙特利雅得建筑行业供应链展会

5月20日-21日&#xff0c;找钢产业互联集团&#xff08;以下简称&#xff1a;找钢集团&#xff09;亮相沙特利雅得建筑行业供应链展会。本次展会由沙特阿拉伯国家住房公司&#xff08;NHC&#xff09;主办&#xff0c;中信建设协办&#xff0c;涵盖住房新科技、绿色环保等多个主…

六零导航页 file.php 任意文件上传漏洞复现(CVE-2024-34982)

0x01 产品简介 LyLme Spage(六零导航页)是中国六零(LyLme)开源的一个导航页面。致力于简洁高效无广告的上网导航和搜索入口,支持后台添加链接、自定义搜索引擎,沉淀最具价值链接,全站无商业推广,简约而不简单。 0x02 漏洞概述 六零导航页 file.php接口处任意文件上传…

使用API有效率地管理Dynadot域名,进行域名邮箱的默认邮件转发设置

关于Dynadot Dynadot是通过ICANN认证的域名注册商&#xff0c;自2002年成立以来&#xff0c;服务于全球108个国家和地区的客户&#xff0c;为数以万计的客户提供简洁&#xff0c;优惠&#xff0c;安全的域名注册以及管理服务。 Dynadot平台操作教程索引&#xff08;包括域名邮…

头歌OpenGauss数据库-I.复杂查询第5关:至少学了某位学生(Oliver)所学的全部课程的学生

本关任务&#xff1a;根据提供的表和数据&#xff0c;查询至少学了Oliver同学所学的全部课程的其他同学的信息&#xff08;学号s_id&#xff0c;姓名s_name&#xff09;。 student表数据&#xff1a; s_ids_names_sex01Mia女02Riley男03Aria女04Lucas女05Oliver男06Caden男07Li…