V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  freakxx  ›  全部回复第 22 页 / 共 25 页
回复总数  486
1 ... 14  15  16  17  18  19  20  21  22  23 ... 25  
你好,想加入 Python 和 Go
Id: chrisguox
谢谢
极课活动码:geek210082
分母分母
2019-01-25 11:51:26 +08:00
回复了 leisurelylicht 创建的主题 Python django_filter 怎么用 choice 的值进行过滤
@leisurelylicht

你把 option_value 改为 lforce_text(option_label) 就可以了。

另外一种做法是,自定义 filter,做个 dict,key,value 再做一遍反向查询。
为什么很多转行开发的都成功了,我一个运维转开发却觉得步履维艰?

-----

至于这个问题,你回复也是可以回答你这个问题的。


转行不懂,心态肯放低。

| java→Android,SMM→springboot 这种路线估计枯燥的一比
类似这种,是肯去学的。


你现在学习路径,去参照站内或者知乎给的路径,好好学习,都是可以的。
关键是一看到 core java,think in java 就出现上面这种疑问,那么肯定就只能往零散和视频去了。
结果肯定是轮回的。
心态问题,学习路径问题。

另外,假如运维和开发是两种不同的方向。那么就算做了 5 年运维,你这 5 年也不是可以按到等量去换算为开发经验。

----
2019-01-25 09:49:33 +08:00
回复了 leisurelylicht 创建的主题 Python django_filter 怎么用 choice 的值进行过滤
不过你数据库存的是 1,2 呀,
不过无论想怎么搞,一般在前端层面的去做 widgets 就 ok 了。

思路这么进去

看这个库的 225 行
```
class ChoiceFilter(Filter):
field_class = ChoiceField # 这一行

def __init__(self, *args, **kwargs):
self.null_value = kwargs.get('null_value', settings.NULL_CHOICE_VALUE)
super(ChoiceFilter, self).__init__(*args, **kwargs)

def filter(self, qs, value):
if value != self.null_value:
return super(ChoiceFilter, self).filter(qs, value)

qs = self.get_method(qs)(**{'%s__%s' % (self.field_name, self.lookup_expr): None})
return qs.distinct() if self.distinct else qs
```


然后追溯到 django 的 form widgets, 第 550 行,
s

```
def render_option(self, selected_choices, option_value, option_label):
if option_value is None:
option_value = ''
option_value = force_text(option_value)
if option_value in selected_choices:
selected_html = mark_safe(' selected="selected"')
if not self.allow_multiple_selected:
# Only allow for a single selection.
selected_choices.remove(option_value)
else:
selected_html = ''
return format_html('<option value="{}"{}>{}</option>', option_value, selected_html, force_text(option_label))

```


然后再把 allow none 那个----也做个处理就 OK 了。
2019-01-24 14:51:30 +08:00
回复了 tionsin 创建的主题 程序员 大四毕设, 在线答题系统...Bug 还很多
@tionsin

回答问题也会被刷。。。然后好像被我测炸了,你看下
2019-01-24 14:32:32 +08:00
回复了 tionsin 创建的主题 程序员 大四毕设, 在线答题系统...Bug 还很多
http://js.neio.me/api/leaveComment

{"comment":"1","zone":"16868a4b-efe1-403c-9c98-d4c7e6471d11","toUserId":"","fromMobile":"15000000000"}


这个也是,
感觉对 auth 理解有些偏差
2019-01-24 14:23:15 +08:00
回复了 tionsin 创建的主题 程序员 大四毕设, 在线答题系统...Bug 还很多
后端感觉还有很多地方可以再加强考虑下,
比如接口安全性

http://js.neio.me/api/jointeam
{"teamName":"1","mobile":"15000000000"}

这样能直接操作别人

http://js.neio.me/api/getComment
评论要筛选一遍
2019-01-21 22:28:10 +08:00
回复了 gzf6 创建的主题 程序员 REST API 安全问题
跟安全没关系,
规范问题,
更多的考虑是语义的问题,
针对的都是对资源做处理。
2019-01-21 16:11:26 +08:00
回复了 JCZ2MkKb5S8ZX9pq 创建的主题 随想 关于 [说话交流 & 情商] 的一点小小心得
我也想知道,坐等高手。
2018-12-27 16:43:36 +08:00
回复了 daijinming 创建的主题 程序员 JSON 字段中能不能方一堆 HTML
html_content = '''<html></html>'''

python 的话,直接直接塞进去尽可以

data = {"html_content": html_content}
json 都不用

如果其他语言没办法直接,dumps 下,出来再 loads
一个想做分子的分母报道
2018-12-13 17:31:18 +08:00
回复了 zasilla 创建的主题 Python 正则匹配 url 最后的文件名如何匹配
(?!.*/).*\.jpg
2018-12-12 09:49:54 +08:00
回复了 raawaa 创建的主题 Python Python 的包管理
下载慢换源:
[[source]]

url = "https://pypi.doubanio.com/simple"
verify_ssl = true
name = "douban"


[packages]


lock 慢,加上
--skip-lock
2018-12-11 16:50:21 +08:00
回复了 rizon 创建的主题 程序员 Python 服务怎么做负载均衡?
nginx + uwsgi + supervisor 一把梭
1 ... 14  15  16  17  18  19  20  21  22  23 ... 25  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5700 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 53ms · UTC 03:19 · PVG 11:19 · LAX 19:19 · JFK 22:19
Developed with CodeLauncher
♥ Do have faith in what you're doing.