如何删除 CrudRestController 响应中的 __actions__ 条目?

发布于 2024-10-24 05:46:17 字数 469 浏览 1 评论 0原文

我对 CrudRestController 进行子类化以实现 REST 接口。它工作正常,但响应字典包含一个 __actions__ 条目,其中包含一些我真的不希望在响应中出现的 html 代码。

根据 TableFiller 类的文档字符串,类似这样的内容应该有效:

class ProcessController(CrudRestController):
    model = Process
    #...
    class table_filler_type(TableFiller):
        __model__ = Process
        __actions__ = False

但页面总是抛出 AttributeError: 'Process' object has no attribute '__actions__'

有什么建议吗?

I'm subclassing the CrudRestController to implement an REST interface. It works fine, but the response dict contains an __actions__ entry which contains some html code that I really don't want in my response.

According to the TableFiller class' docstring something like this should work:

class ProcessController(CrudRestController):
    model = Process
    #...
    class table_filler_type(TableFiller):
        __model__ = Process
        __actions__ = False

But the page always throws an AttributeError: 'Process' object has no attribute '__actions__'

Any advice?

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

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

发布评论

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

评论(1

蓦然回首 2024-10-31 05:46:17

尽管有内联文档,正确的方法似乎是:

class table_filler_type(TableFiller):
    __model__ = Process
    __omit_fields__ = ['__actions__', ]

Despite the inline docs, the correct way seems to be:

class table_filler_type(TableFiller):
    __model__ = Process
    __omit_fields__ = ['__actions__', ]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文