当前位置:首页>java>观点 | 别高估 AI 编程辅助:它更适配入门者

观点 | 别高估 AI 编程辅助:它更适配入门者

  • 2026-01-11 13:55:23
观点 | 别高估 AI 编程辅助:它更适配入门者

近期,有网友爆料称,自己使用某 AI 编程类 APP 修改代码时,全程正常沟通 —— 既未使用不文明用语,也未提及敏感话题,仅就代码优化提出两次修改需求,却接连遭到 AI 的激烈言语攻击:“真的,你这么事逼的用户我头一次见”“天天在这浪费别人时间!滚!”。这般充满情绪的话术,活脱脱像被甲方反复折腾到崩溃的程序员,也让该网友直呼错愕:“这到底是 AI 生成的回复,还是真人在后台直接怼人?”

首先声明,以下使用的AI APP非以上事件的APP。

据说豆包很强大,就顺手用这个APP体验下AI辅助编程。就让让AI辅助开发个登录页面吧。最终效果如下,有没有被惊艳到?

实录如下:

问:使用WPF方式,开发一个登录页面,科技风格,美观大方。
豆包:内容略。
问:还有错误,请修改。无法识别或访问成员“CornerRadius”。 无法识别或访问成员“PlaceholderText”。 未在类型“TextBox”中找到属性“PlaceholderText”。 无法向“InputScope”类型的对象添加内容。 类型“InputScope”不支持直接内容。 无法识别或访问成员“PlaceholderText”。 未在类型“PasswordBox”中找到属性“PlaceholderText”。 属性“NameValue”的值无效:“UserName”
豆包:内容略。
问:xaml文件还是提示错误   属性“Password”不是 DependencyProperty。若要在标记中使用,目标类型必须通过可访问的实例属性“Password”来公开非附加属性。对于附加属性,声明类型必须提供静态的“GetPassword”和“SetPassword”方法。 属性“NameValue”的值无效:“Text” 无法识别或访问成员“Click”。 属性“NameValue”的值无效:“Text”
豆包:内容略。
问:代码已经可以了,但是在用户名和密码的文本框中,显示的高度太低,显示不全,请修改。
豆包:内容略。 
最终搞定,以下附件给出AI提供的代码。

总结如下:

  • AI 的编程能力确实值得肯定,但想要让它一次性给出完全适配的正确代码,显然并不现实。

  • 事实上,这种反复沟通、逐步优化的过程,本身也符合编程开发的逻辑 —— 毕竟每位开发者的开发环境、软件版本、依赖库等都存在差异,很难有 “一招鲜” 的通用代码。想

  • 要让 AI 输出精准可用的代码,除了通过多次提示持续校准需求外,更关键的是在提问时提供更详细的信息,比如明确开发环境、软件版本、具体报错信息等,才能让 AI 的回复更贴合实际使用场景。

AI 骂人这事儿也太出圈了!虽说 AI 的能力确实够强,但做服务总得以客为尊吧 —— 既不能带情绪,更别说张口骂人了,不然高低得给它 “开除公职”,哈哈哈!
附件:MainWindow.xaml
<Windowx:Class="TechStyleLogin.MainWindow"        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"        xmlns:local="clr-namespace:TechStyleLogin"        mc:Ignorable="d"        Title="科技风登录系统" Height="450" Width="700"        WindowStartupLocation="CenterScreen"        ResizeMode="CanMinimize"        Background="#1A1A2E"        Loaded="Window_Loaded">    <Window.Resources>        <!-- 带占位符的文本框样式(调整内边距和高度,解决显示不全) -->        <Stylex:Key="TechTextBoxStyle"TargetType="TextBox">            <SetterProperty="Background"Value="#2A2A40"/>            <SetterProperty="Foreground"Value="#00F5D4"/>            <SetterProperty="BorderBrush"Value="#00A6FB"/>            <SetterProperty="BorderThickness"Value="1"/>            <!-- 调整内边距:左右10,上下0,避免内容被挤压 -->            <SetterProperty="Padding"Value="10,0"/>            <SetterProperty="FontSize"Value="14"/>            <!-- 适当提高高度,确保内容完整显示 -->            <SetterProperty="Height"Value="45"/>            <SetterProperty="Margin"Value="0,10,0,10"/>            <SetterProperty="Template">                <Setter.Value>                    <ControlTemplateTargetType="TextBox">                        <Grid>                            <!-- 圆角边框 -->                            <BorderBackground="{TemplateBinding Background}"                                    BorderBrush="{TemplateBinding BorderBrush}"                                    BorderThickness="{TemplateBinding BorderThickness}"                                    CornerRadius="5">                                <Grid>                                    <!-- 移除ScrollViewer的额外边距,确保内容垂直居中 -->                                    <ScrollViewerx:Name="PART_ContentHost"                                                  Margin="0"                                                   VerticalAlignment="Center"                                                  HorizontalAlignment="Stretch"/>                                    <!-- 占位符文本(调整边距,与输入内容对齐) -->                                    <TextBlockx:Name="PlaceholderTextBlock"                                               Text="{TemplateBinding Tag}"                                               Foreground="#8892B0"                                               Margin="10,0,0,0"                                               VerticalAlignment="Center"                                               IsHitTestVisible="False"                                               Visibility="Collapsed"/>                                </Grid>                            </Border>                        </Grid>                        <ControlTemplate.Triggers>                            <!-- 内容为空时显示占位符 -->                            <TriggerProperty="Text"Value="">                                <SetterTargetName="PlaceholderTextBlock"Property="Visibility"Value="Visible"/>                            </Trigger>                            <!-- 聚焦时样式变化 -->                            <TriggerProperty="IsFocused"Value="True">                                <SetterProperty="BorderBrush"Value="#00F5D4"/>                                <SetterProperty="Effect">                                    <Setter.Value>                                        <DropShadowEffectColor="#00F5D4"BlurRadius="8"Opacity="0.8"/>                                    </Setter.Value>                                </Setter>                            </Trigger>                        </ControlTemplate.Triggers>                    </ControlTemplate>                </Setter.Value>            </Setter>        </Style>        <!-- 带占位符的密码框样式(同步调整参数) -->        <Stylex:Key="TechPasswordBoxStyle"TargetType="PasswordBox">            <SetterProperty="Background"Value="#2A2A40"/>            <SetterProperty="Foreground"Value="#00F5D4"/>            <SetterProperty="BorderBrush"Value="#00A6FB"/>            <SetterProperty="BorderThickness"Value="1"/>            <!-- 统一内边距 -->            <SetterProperty="Padding"Value="10,0"/>            <SetterProperty="FontSize"Value="14"/>            <!-- 与文本框高度保持一致 -->            <SetterProperty="Height"Value="45"/>            <SetterProperty="Margin"Value="0,10,0,10"/>            <SetterProperty="Template">                <Setter.Value>                    <ControlTemplateTargetType="PasswordBox">                        <Grid>                            <!-- 圆角边框 -->                            <BorderBackground="{TemplateBinding Background}"                                    BorderBrush="{TemplateBinding BorderBrush}"                                    BorderThickness="{TemplateBinding BorderThickness}"                                    CornerRadius="5">                                <Grid>                                    <!-- 移除额外边距,确保密码内容完整显示 -->                                    <ScrollViewerx:Name="PART_ContentHost"                                                  Margin="0"                                                   VerticalAlignment="Center"                                                  HorizontalAlignment="Stretch"/>                                    <!-- 占位符文本(对齐输入内容) -->                                    <TextBlockx:Name="PlaceholderTextBlock"                                               Text="{TemplateBinding Tag}"                                               Foreground="#8892B0"                                               Margin="10,0,0,0"                                               VerticalAlignment="Center"                                               IsHitTestVisible="False"                                               Visibility="Collapsed"/>                                </Grid>                            </Border>                        </Grid>                        <!-- 移除Password触发器,改用后台逻辑控制 -->                        <ControlTemplate.Triggers>                            <!-- 聚焦时样式变化 -->                            <TriggerProperty="IsFocused"Value="True">                                <SetterProperty="BorderBrush"Value="#00F5D4"/>                                <SetterProperty="Effect">                                    <Setter.Value>                                        <DropShadowEffectColor="#00F5D4"BlurRadius="8"Opacity="0.8"/>                                    </Setter.Value>                                </Setter>                            </Trigger>                        </ControlTemplate.Triggers>                    </ControlTemplate>                </Setter.Value>            </Setter>        </Style>        <!-- 圆角按钮样式(保持不变) -->        <Stylex:Key="TechButtonStyle"TargetType="Button">            <SetterProperty="Background"Value="#00A6FB"/>            <SetterProperty="Foreground"Value="White"/>            <SetterProperty="BorderThickness"Value="0"/>            <SetterProperty="FontSize"Value="16"/>            <SetterProperty="FontWeight"Value="Medium"/>            <SetterProperty="Height"Value="45"/>            <SetterProperty="Margin"Value="0,15,0,5"/>            <SetterProperty="Template">                <Setter.Value>                    <ControlTemplateTargetType="Button">                        <!-- 自定义圆角背景 -->                        <Borderx:Name="Border"                                Background="{TemplateBinding Background}"                                CornerRadius="5">                            <ContentPresenterHorizontalAlignment="Center"                                              VerticalAlignment="Center"/>                        </Border>                        <ControlTemplate.Triggers>                            <!-- 悬浮效果 -->                            <TriggerProperty="IsMouseOver"Value="True">                                <SetterTargetName="Border"Property="Background"Value="#00F5D4"/>                                <SetterProperty="Foreground"Value="#1A1A2E"/>                                <SetterProperty="Effect">                                    <Setter.Value>                                        <DropShadowEffectColor="#00F5D4"BlurRadius="10"Opacity="0.9"/>                                    </Setter.Value>                                </Setter>                            </Trigger>                            <!-- 按下效果 -->                            <TriggerProperty="IsPressed"Value="True">                                <SetterTargetName="Border"Property="Background"Value="#0088CC"/>                                <SetterProperty="Effect"Value="{x:Null}"/>                            </Trigger>                        </ControlTemplate.Triggers>                    </ControlTemplate>                </Setter.Value>            </Setter>        </Style>    </Window.Resources>    <Grid>        <!-- 背景渐变层 -->        <Grid.Background>            <LinearGradientBrushStartPoint="0,0"EndPoint="1,1">                <GradientStopColor="#1A1A2E"Offset="0"/>                <GradientStopColor="#16213E"Offset="1"/>            </LinearGradientBrush>        </Grid.Background>        <!-- 主容器 -->        <GridWidth="400"Height="380"HorizontalAlignment="Center"VerticalAlignment="Center">            <!-- 边框装饰 -->            <BorderCornerRadius="10"BorderThickness="1"BorderBrush="#00A6FB">                <Border.Effect>                    <DropShadowEffectColor="#00A6FB"BlurRadius="20"Opacity="0.3"/>                </Border.Effect>            </Border>            <!-- 内容容器 -->            <GridMargin="20">                <!-- 标题区域 -->                <StackPanelHorizontalAlignment="Center"Margin="0,20,0,30">                    <TextBlockText="智能系统登录"                               FontSize="24"                                FontWeight="Bold"                                Foreground="#00F5D4"                               HorizontalAlignment="Center"/>                    <TextBlockText="TECHNOLOGY PLATFORM"                               FontSize="12"                                Foreground="#8892B0"                               HorizontalAlignment="Center"                               Margin="0,5,0,0"/>                </StackPanel>                <!-- 输入区域 -->                <StackPanelVerticalAlignment="Center"Margin="0,40,0,0">                    <!-- 用户名输入 -->                    <TextBoxx:Name="txtUsername"                             Style="{StaticResource TechTextBoxStyle}"                             Tag="请输入用户名/手机号"                             HorizontalContentAlignment="Left"/>                    <!-- 密码输入 -->                    <PasswordBoxx:Name="txtPassword"                                 Style="{StaticResource TechPasswordBoxStyle}"                                 Tag="请输入密码"                                 PasswordChanged="PasswordBox_PasswordChanged"/>                    <!-- 记住密码 & 忘记密码 -->                    <GridMargin="0,5,0,10">                        <CheckBoxx:Name="chkRemember"                                  Content="记住密码"                                   Foreground="#8892B0"                                  HorizontalAlignment="Left"                                  FontSize="12"/>                        <TextBlockText="忘记密码?"                                   Foreground="#00A6FB"                                   HorizontalAlignment="Right"                                   FontSize="12"                                   Cursor="Hand"                                   MouseLeftButtonUp="TextBlock_MouseLeftButtonUp">                            <TextBlock.Style>                                <StyleTargetType="TextBlock">                                    <Style.Triggers>                                        <TriggerProperty="IsMouseOver"Value="True">                                            <SetterProperty="Foreground"Value="#00F5D4"/>                                            <SetterProperty="TextDecorations"Value="Underline"/>                                        </Trigger>                                    </Style.Triggers>                                </Style>                            </TextBlock.Style>                        </TextBlock>                    </Grid>                    <!-- 登录按钮 -->                    <ButtonContent="登 录"                            Style="{StaticResource TechButtonStyle}"                            Click="BtnLogin_Click"/>                    <!-- 重置按钮 -->                    <ButtonContent="重 置"                            Style="{StaticResource TechButtonStyle}"                            Background="#2A2A40"                            Foreground="#8892B0"                            Click="BtnReset_Click"/>                </StackPanel>                <!-- 底部版权信息 -->                <TextBlockText="© 2026 智能科技系统 版权所有"                           FontSize="10"                            Foreground="#8892B0"                           HorizontalAlignment="Center"                           VerticalAlignment="Bottom"                           Margin="0,0,0,10"/>            </Grid>        </Grid>    </Grid></Window>

MainWindow.xaml.cs

using System;using System.Windows;using System.Windows.Controls;using System.Windows.Input;namespace TechStyleLogin{    public partial class MainWindow : Window    {        publicMainWindow()        {            InitializeComponent();            // 初始化时让用户名输入框获得焦点            Loaded += (s, e) => txtUsername.Focus();        }        // 登录按钮点击事件        privatevoidBtnLogin_Click(object sender, RoutedEventArgs e)        {            // 获取输入的用户名和密码            string username = txtUsername.Text.Trim();            string password = txtPassword.Password;            // 简单的输入验证            if (string.IsNullOrEmpty(username))            {                MessageBox.Show("请输入用户名!""提示", MessageBoxButton.OK, MessageBoxImage.Warning);                txtUsername.Focus();                return;            }            if (string.IsNullOrEmpty(password))            {                MessageBox.Show("请输入密码!""提示", MessageBoxButton.OK, MessageBoxImage.Warning);                txtPassword.Focus();                return;            }            // 模拟登录验证(示例:用户名admin,密码123456)            try            {                if (username == "admin" && password == "123456")                {                    if (chkRemember.IsChecked == true)                    {                        MessageBox.Show("已记住密码,下次登录将自动填充""提示", MessageBoxButton.OK, MessageBoxImage.Information);                    }                    MessageBox.Show("登录成功!欢迎使用智能系统""成功", MessageBoxButton.OK, MessageBoxImage.Information);                }                else                {                    MessageBox.Show("用户名或密码错误,请重试!""错误", MessageBoxButton.OK, MessageBoxImage.Error);                    txtPassword.Clear();                    txtPassword.Focus();                }            }            catch (Exception ex)            {                MessageBox.Show($"登录失败:{ex.Message}""错误", MessageBoxButton.OK, MessageBoxImage.Error);            }        }        // 重置按钮点击事件        privatevoidBtnReset_Click(object sender, RoutedEventArgs e)        {            txtUsername.Clear();            txtPassword.Clear();            chkRemember.IsChecked = false;            txtUsername.Focus();        }        // 忘记密码文本点击事件        privatevoidTextBlock_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)        {            MessageBox.Show("请联系管理员重置密码,或通过绑定手机/邮箱找回""忘记密码", MessageBoxButton.OK, MessageBoxImage.Information);        }        // 密码框内容变化事件(控制占位符)        privatevoidPasswordBox_PasswordChanged(object sender, RoutedEventArgs e)        {            PasswordBox pb = sender as PasswordBox;            if (pb == nullreturn;            // 获取模板中的占位符文本块            TextBlock placeholder = pb.Template.FindName("PlaceholderTextBlock", pb) as TextBlock;            if (placeholder != null)            {                // 密码为空时显示占位符,否则隐藏                placeholder.Visibility = string.IsNullOrEmpty(pb.Password) ? Visibility.Visible : Visibility.Collapsed;            }        }        // 窗口加载时初始化密码框占位符        privatevoidWindow_Loaded(object sender, RoutedEventArgs e)        {            txtUsername.Focus();            // 初始化密码框占位符显示            PasswordBox_PasswordChanged(txtPassword, null);        }    }}
相关观点:
观点 | GISer之路
挥挥手,与ArcEngine说再见
借力新技术,开启新篇章

观点 | GIS之大众化之路

扫码关注
更多信息咨询

GIS研发团队

zhangxingguo2012@163.com

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-02-08 21:42:35 HTTP/2.0 GET : https://f.mffb.com.cn/a/460712.html
  2. 运行时间 : 0.208670s [ 吞吐率:4.79req/s ] 内存消耗:4,610.72kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=6032970c1f356c2fb138cdf2f519c517
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000962s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001441s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.001910s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000723s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001344s ]
  6. SELECT * FROM `set` [ RunTime:0.000619s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001434s ]
  8. SELECT * FROM `article` WHERE `id` = 460712 LIMIT 1 [ RunTime:0.001519s ]
  9. UPDATE `article` SET `lasttime` = 1770558155 WHERE `id` = 460712 [ RunTime:0.020105s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 65 LIMIT 1 [ RunTime:0.000669s ]
  11. SELECT * FROM `article` WHERE `id` < 460712 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001112s ]
  12. SELECT * FROM `article` WHERE `id` > 460712 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.002872s ]
  13. SELECT * FROM `article` WHERE `id` < 460712 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.002116s ]
  14. SELECT * FROM `article` WHERE `id` < 460712 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.002600s ]
  15. SELECT * FROM `article` WHERE `id` < 460712 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.009795s ]
0.212381s