We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
求助: from DjangoUeditor.models import UEditorField class Blog(models.Model): Name=models.CharField(,max_length=100,blank=True) Content=UEditorField(u'内容 ',width=600, height=300, toolbars="full", imagePath="", filePath="", upload_settings={"imageMaxSize":1204000}, settings={},command=None,event_handler=myEventHander(),blank=True) 第一个是Name=models.CharField(,max_length=100,blank=True)这里括号内的第一个逗号语法报错 删了以后就好了 第二个是command=None,event_handler=myEventHander()中的myEventHander()没有定义
The text was updated successfully, but these errors were encountered:
myEventHander需要你自己定义
Sorry, something went wrong.
No branches or pull requests
求助:
from DjangoUeditor.models import UEditorField
class Blog(models.Model):
Name=models.CharField(,max_length=100,blank=True)
Content=UEditorField(u'内容 ',width=600, height=300, toolbars="full", imagePath="", filePath="", upload_settings={"imageMaxSize":1204000},
settings={},command=None,event_handler=myEventHander(),blank=True)
第一个是Name=models.CharField(,max_length=100,blank=True)这里括号内的第一个逗号语法报错
删了以后就好了
第二个是command=None,event_handler=myEventHander()中的myEventHander()没有定义
The text was updated successfully, but these errors were encountered: