老师,这个设置长度的单位是像素,那是不是一个文件在不同电脑中运行的结果会有偏差啊。
老师,这个rename是不是只能对当前目录下的文件夹重命名
老师好,这个a是长宽都是设定好了的哇,这个还能变大小吗?
老师报404我检查了也不清楚那么出问题你帮我看看
Servlet.zip
为什么说L2 每次多走的幅度是之前的 2 倍的 t时刻的Wi呢,根据公式每次多更新的幅度不应该是学习率乘以Wi吗
这个ROWID是物理存储地址,对旁边的id,name数据存放有影响么
你好,老师:
from tkinter import * from tkinter import messagebox class Application(Frame): # 经典的GUI程序类的写法 def __init__(self,master=None): super().__init__(master) #显示调用父类Frame的init方法 self.master = master self.pack() self.createWidget() # 统一调用组件的方法 def createWidget(self): # 创建登录组件 self.label01 = Label(self,text='用户名') self.label01.pack() # StringVar变量绑定到指定的组件 # StringVar变量的值发生变化,组件内容也发生变化 # 组件内容发生变化,StringVar变量的值也发生变化 v1 = StringVar() self.entry01 = Entry(self,textvariable=v1) self.entry01.pack() print(v1.get());print(self.entry01.get()) # 创建密码框 self.label02 = Label(self,text='密码') self.label02.pack() v2 = StringVar() self.entry02 = Entry(root,textvariable=v2,show='*') self.entry02.pack() self.btn01 = Button(root,text='登录',command=self.login()) self.btn01.pack() def login(self): username = self.entry01.get() password = self.entry02.get() print('正在与数据库进行对比') print('用户名:'+username) print('密码:'+password) if username=='haozi' and password =='123456': messagebox.showinfo('学习系统','登录成功,欢迎学习') else: messagebox.showinfo('学习系统','登录失败,用户名或密码错误,请重新登录') #if __name__== "_main__": root = Tk() root.geometry('400x250+200+200') root.title('一个经典的GuI程序类的测试') app = Application(master=root) root.mainloop()
为什么运行起来立马弹出登录失败,然后想重新输入登录的时候,要在控制台点一下才能输入,输入完之后又实现不了登录功能
点击登录按钮,没有反应
视频1:53这里,select标签中没写parameterType属性,也能执行成功。
那什么时候必须要指定这个属性呢,什么情况又可以不指定?
请问为什么我的class文件没有出来呢?
老师,在做打包处理时报这个错误是怎么回事?
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project springbootlogback: Input length = 1 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Process finished with exit code 1
<template> <div> <button @cilck="showA">A组件</button> <button @click="showB">B组件</button> <button @click="showC">kong组件</button> <keep-alive> <component :is="current"></component> </keep-alive> 动态组件 </div> </template> <script> import AComponent from "./child/AComponent"; import BComponent from "./child/BComponent"; export default { name:"dongtai_components", data(){ return{ current:AComponent, } }, components:{ AComponent, BComponent, },methods:{ showA(){ this.current=AComponent; }, showB(){ this.current=BComponent; },showC(){ this.current=AComponent; } } } </script> <template> <div> AComponentaaa </div> </template> <script> export default { name:"AComponent", data(){ return{ } } } </script> <template> <div> BComponent {{msg}} <button @click="handle">改变数据</button> </div> </template> <script> export default { name:"BComponent", data(){ return{ msg:"原有数据" } }, methods:{ handle(){ this.msg="这是修改后的数据" } } } </script>
老师我这个showA点击之后没效果,而且把整个showA删除之后,后面两个事件也没效果了。是怎么回事
apache-tomcat-9.0.34.rar
老师我配置跟视频中的一样,我说什么就找不到资源呀?
老师请问这个地方是什么问题?和课件对比没有找到原因,好迷糊!!!
老师这是怎么回事,密码应该是对的怎么还是不行呢?
您好,老师。我搞了一晚上还是没有解决这个问题,总是导入不了数据的数据。
防火墙是关闭状态的,mysql数据库是启动状态,并且端口没有被占用,数据库也设置了可以被远程连接,但是一直导入不了数据中的数据,希望老师能提点意见
非常抱歉给您带来不好的体验!为了更深入的了解您的学习情况以及遇到的问题,您可以直接拨打投诉热线:
我们将在第一时间处理好您的问题!
关于
课程分类
百战程序员微信公众号
百战程序员微信小程序
©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园网站维护:百战汇智(北京)科技有限公司 京公网安备 11011402011233号 京ICP备18060230号-3 营业执照 经营许可证:京B2-20212637