为了账号安全,请及时绑定邮箱和手机立即绑定

请问,在note页面中应该如何接收?我已经试过用字典形式但是不行。

请问,在note页面中应该如何接收?我已经试过用字典形式但是不行。

哈士奇WWW 2023-04-16 04:05:17
在code.py中声明如下数据库对象db = web.database(dbn='mysql' , user='root' , pw='jackniang#2',db='YoO_database')将数据库对象return到index.html模板class index: def GET(self): notes = db.select('tab_note') return render.index(notes)在index模板中接收$def with (notes)在页面遍历并通过超链接方式将单个记录结果传递给notepage页面$for note in notes: <a href="/note?$note" >
查看完整描述

1 回答

?
慕侠2389804

TA贡献1719条经验 获得超6个赞

note 页定义一个新的路由

urls = (    '/', 'index',    '/note/(.*)', 'Notepage'  # 超链接传入note)

然后在Note控制器中获得地址栏传入的id

class Notepage:    def GET(self, note):        return render.notepage(note)

这样就能在notepage.html这个模板中调用了,跟你的index差不多


查看完整回答
反对 回复 2023-04-17
  • 1 回答
  • 0 关注
  • 108 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信