带有操作和视觉信息的 web2py 按钮
我有一个带有按钮和 DIV 的视图,
我试图拥有这种功能:
如果单击按钮 - 执行控制器方法(我有方法、db.insert 等) - 如果测试(在控制器方法内部)通过,按钮消失并且 div 出现(我想使用 ajax - 不刷新洞页面)
每当刷新页面时,都必须再次对按钮进行测试是否可见
谢谢
I have a view with a button and a DIV
I am trying to have this kind of functionality:
if the button is clicked - a controller method is executed ( i have the method, db.insert, etc.)
- if test (inside the controller method) is passed the button dissapears and the div appears ( I thought at using ajax - not to refresh the hole page)whenever the page is refreshed the test has to be made again for the button to be visible or not
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?
Something like this?
我查看了更多您的示例,我认为我的问题更简单(如果没有其他解决方案)
所以我所做的是在视图中使用 eval:
按钮
和控制器方法:
进一步刷新我使用jquery,视图:
其中 *flag_normal* 由主控制器发送
我希望这不是太低效,如果是这样,很有用
I looked in more of your examples and I think my problem was simpler ( if there isn't any other solution)
So what I did was I used eval:
button in view :
and the controller method:
for further refresh i used jquery, in view:
where *flag_normal* is sent by the main controller
I hope this is not too inefficient and if so, useful