摘要: class type1(graphene.InputObjectType): name = graphene.String() gender= graphene.String() class type2(graphene.ObjectType): name = graphene.String() g 阅读全文
posted @ 2020-07-10 00:36 青花メ 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1、如果没有通过nginx的反向代理:request.META.get("REMOTE_ADDR") 2、在nginx配置中增加HTTP_X_FORWARDED_FOR X-Forwarded-For请求头格式:X-Forwarded-For:client, proxy1, proxy2 proxy 阅读全文
posted @ 2020-07-09 14:35 青花メ 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 1、所需要的安装包: graphene 2.1.8 Django 3.0.8 graphene-django 2.11.0 2、创建一个model from django.db import models # Create your models here. from django.db impor 阅读全文
posted @ 2020-07-08 00:48 青花メ 阅读(446) 评论(0) 推荐(0) 编辑
摘要: from elasticsearch_dsl import connections connections.create_connection([hosts=["http://username:password@elasticsearch.com]]) 阅读全文
posted @ 2020-06-18 15:08 青花メ 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 在Graphene中搜索Es中的数据一开始打算重写DjangoFilterConnectionField和Django Model对应的type。但是这样比较复杂,字段的对应以及查询显示,排序等。后来发现一个东西: graphene-elastic 阅读全文
posted @ 2020-06-15 00:11 青花メ 阅读(187) 评论(0) 推荐(0) 编辑
摘要: class DictType(graphene.InputObjectType): name = graphene.InputField(graphene.String) # 定义一个查询语句 class Query(ObjectType): all_user = graphene.List(Use 阅读全文
posted @ 2020-06-05 01:00 青花メ 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 报错信息: File "/usr/local/lib/python3.7/site-packages/django/db/backends/mysql/base.py", line 37, in <module> raise ImproperlyConfigured('mysqlclient 1.3 阅读全文
posted @ 2019-12-10 11:25 青花メ 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 插件:Tribute 地址:https://github.com/zurb/tribute 阅读全文
posted @ 2019-10-24 19:08 青花メ 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 启动命令中必须带http:// 类似这样 阅读全文
posted @ 2019-10-11 10:28 青花メ 阅读(3153) 评论(0) 推荐(0) 编辑
摘要: /sbin/service rabbitmq-server stop yum list | grep rabbitmq yum -y remove rabbitmq-server.noarch yum list | grep erlang yum -y remove erlang-* yum remove erlang.x86_64 rm -rf /usr/lib64/erlang rm -rf 阅读全文
posted @ 2019-09-27 14:13 青花メ 阅读(5123) 评论(0) 推荐(0) 编辑