时间:2021-05-23
1.安装依赖包
pip install channels channels-redis2.settings.py 修改加上支持
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'MyWeb.apps.MywebConfig', "channels",]首先需要建立一个django项目。其中在你自己的app下面 生成consumers.py和routing.py配置文件。
consumers.py:相当于django的视图,也就是说所有的websocket路由过来的执行的函数都在consumers.py类似于django的视图views.py
routing.py:是websocket中的url和执行函数的对应关系。相当于django的urls.py,根据映射关系,当websocket的请求进来的时候,根据用户的请求来触发我们的consumers.py里的方法。
3.安装redis
redis 安装配置默认密码yum install -y redis[root@localhost ~]# vim /etc/redis.conf 开启远程bind 0.0.0.0 protected-mode noredis-cli -h 192.168.1.20 -p 63794.接着配置settings.py 最底部加上这条。
CHANNEL_LAYERS = { 'default': { 'BACKEND': 'channels_redis.core.RedisChannelLayer', 'CONFIG': { "hosts": [('192.168.1.20', 6379)], }, },}ASGI_APPLICATION = "MyWeb.routing.application"接着简单的写一下,routing.py 里面
from channels.routing import ProtocolTypeRouterapplication = ProtocolTypeRouter({ # Empty for now (http->django views is added by default)})进入django shell 测试是否能连接到数据库
(venv) C:\Users\LyShark\PycharmProjects\MyProject>manage.py shellPython 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information.(InteractiveConsole)>>> import channels.layers>>> channel_layer = channels.layers.get_channel_layer()>>> from asgiref.sync import async_to_sync>>> async_to_sync(channel_layer.send)('test_channel', {'type': 'hello'})>>> async_to_sync(channel_layer.receive)('test_channel'){'type': 'hello'}>>>以上就是django使用channels实现通信的示例的详细内容,更多关于channels实现通信的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jquery框架中提供了$.ajax、$.get、$.post方法,用于进行异步交互,由于Django中默认使用CSRF约束,推荐使用$.get示例:实现省市区
1、其中再语义分割比较常用的上采样:其实现方法为:defupconv2x2(in_channels,out_channels,mode='transpose')
先看Pytorch中的卷积classtorch.nn.Conv2d(in_channels,out_channels,kernel_size,stride=1,
Ajax的出现让Web展现了更新的活力,基本所有的语言,都动态支持Ajax与起服务端进行通信,并在页面实现无刷新动态交互。下面是散仙使用Django+Jquer
格式:list.index示例:{{goods.0}}补充知识:使用Django从后端向前端页面中传递一个数组的方法今天用Django框架时遇到一个坑,就是当前