在django中采样mysql结果
我正在运行 django raw sql。假设它返回 250 条记录。我想根据用户在表单上给出的输入百分比(在模板中)对结果进行采样。我们怎样才能做到这一点?我可以使用 get 方法获取用户给出的输入数字。之后我如何对记录进行采样?请帮助我
-维克拉姆
I am running django raw sql. Lets say if it returns 250 records. I want sample the results based on the input percentage given by the user on the form (In template). How can we achieve this? I can get the input number given by the user using get method. After that how can I sample the records? Please help me
-Vikram
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你为什么要执行原始 sql,但这里有一种方法可以使用 Django 查询来完成......
因此,如果你有 /some/url?percent=40 这将显示模型所有对象的 40% ,随机化。
I don't know why you are doing raw sql but here's a way you could do it using Django queries...
Thus, if you had /some/url?percent=40 this would show 40% of all the objects of a model, randomized.