thinkphp 提交表单数据到数据库后 数据如何在tpl显示模板 出现 查看数据库数据

就拿TP留言板举例是做跳转吗?
2025-04-01 17:36:07
推荐回答(3个)
回答(1):

搜索数据库数据,在前台html页面调用。

回答(2):

ajax,异步就可以了

回答(3):

private void button1_Click(object sender, System.EventArgs e)
public override void Display(int depth)
{
Console.WriteLine(new string('-', depth) + name);
foreach (Component component in children)
{
component.Display(depth + 2);
}
}