django求救
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django求救相关的知识,希望对你有一定的参考价值。
用django写了websocket聊天室用pytorch写了chatbot发现这俩各玩各的啥毛病没有可当把消息交给chatbot处理时候就报错了下面是日志及目录树和django配置的一部分
参考技术A manage.py 跟chatbot_sequence.py相隔两个层级,你用python manage.py runserver 启动的时候,path是其所在的工作目录,就是chatbot_sequence.py的上上级,在这个目录下,当然找不到chatbot_sequence.py这个文件,你需要修改这个path,你可以先把断点打到这一句上,先查看这个path所代表的具体地址,实在不行自己单独写一个变量C# 求救。。关于不是特性类
//不明白这样定义了类之后,编译器告诉我这不是特性类。。哪里出问题了
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Reflection;
namespace Supreme.InformationAttribute
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method,AllowMultiple=true,Inherited=false)]
public class InformationAttribute:Attribute
private string name;
public string Name
get
return name;
private string issue;
public string Issue
get
return issue;
public InformationAttribute(string name, string issue)
this.name = name;
this.issue = issue;
//public InformationAttribute(string issue, string name)
//
// this.issue = issue;
// this.name = name;
//
public InformationAttribute()
this.name = "defualt";
this.issue = "null";
空间外,其他的没有问题。
下面是测试代码,都可以正常编译。
你的问题是不是有其他的类编译不过去呢?仔细查看异常信息内容已经异常信息发生的位置,你可能会有收获。
public class Class1
[Information("aa", "bb")]
public void TestAttribute()
追问
我把特性附着在类上面时。。编译器就提示不是特性类了。。
追答放在类上就有问题了,看一下你的声明,即支持Class也支持Method。
在我的编译器上面是可以通过编译的。你可看一下你的类定义,或是修改你的Attribute的声明。
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method,AllowMultiple=true,Inherited=false)]
[Information("aa", "bb")]
public class Class1
public void TestAttribute()
以上是关于django求救的主要内容,如果未能解决你的问题,请参考以下文章