web2py:如何将 javascript 添加到 Web2py Crud 表单?

发布于 2024-10-09 01:50:40 字数 133 浏览 3 评论 0原文

使用 Web2Py。我试图将一些 javascript 附加到字段(onchange)或表单(onsubmit),但我认为绝对没有办法将这样的参数传递给 crud.create 或 form.custom.widget。

有人有主意吗?

Working with Web2Py. I'm trying to attach some javascript either to a field (onchange) or to the form (onsubmit), but I see absolutely no way to pass such argument to crud.create or to form.custom.widget.

Anyone has an idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜点 2024-10-16 01:50:40

当然有办法。适当的方法是询问 web2py 邮件列表上知道如何操作的人,而不是询问一般的堆栈溢出用户,他们会猜测错误的答案。 :-)

不管怎样,假设你有:

db.define_table('image',
    Field('name'),
    Field('file', 'upload'))

你可以做

def upload_image():
    form=crud.create(db.image)
    form.element(name='file')['_onchange']='... your js here ...'
    form.element('form')['_onsubmit']='... your js here ...'
    return dict(form=form)

Element 采用 css3/jQuery 语法(但它是在 python 中计算的)。

Of course there is a way. The appropriate way is to ask people on the web2py mailing list who know how to, as opposed to generic stack overflow users who will guess an incorrect answer. :-)

Anyway, assume you have:

db.define_table('image',
    Field('name'),
    Field('file', 'upload'))

You can do

def upload_image():
    form=crud.create(db.image)
    form.element(name='file')['_onchange']='... your js here ...'
    form.element('form')['_onsubmit']='... your js here ...'
    return dict(form=form)

Element takes the css3/jQuery syntax (but it is evaluated in python).

素罗衫 2024-10-16 01:50:40

我不相信有办法直接做到这一点。一种选择是只操作 web2py 生成的 HTML,它只是一个字符串。在我看来,更干净的方法是使用 jQuery 的 $(document).ready() 函数绑定事件。

假设您有一个数据库表(所有内容都是从 web2py 的文档中窃取的):

db.define_table('image',
    Field('name'),
    Field('file', 'upload'))

使用表单:

def upload_image():
    return dict(form=crud.create(db.image))

嵌入视图中(以最简单的方式):

{{=form}}

并且您想要将 onblur 处理程序添加到名称输入字段(添加到视图中):

<script type="text/javascript">
$(document).ready(function(){
    $("#image_name").blur(function(){
      // do something with image name loses focus...
    });
});
</script>

I do not believe there is a way to do this directly. One option is just to manipulate web2py generated HTML, it is just a string. Even cleaner, in my opinion, is just to bind the event using jQuery's $(document).ready() function.

Say you have a database table (all is stolen from web2py's docs):

db.define_table('image',
    Field('name'),
    Field('file', 'upload'))

With form:

def upload_image():
    return dict(form=crud.create(db.image))

Embedded in a view (in the simplest manner):

{{=form}}

And you want to add an onblur handler to the name input field (added to the view):

<script type="text/javascript">
$(document).ready(function(){
    $("#image_name").blur(function(){
      // do something with image name loses focus...
    });
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文