使用justpy构建web应用程序。似乎找不到问题出在哪里。
下面是代码:
import justpy as jp
def app():
wp=jp.QuasarPage
h1=jp.QDiv(a=wp, text= "Analysis of Course Reviews" ,classes= "text-h2 text-weight-medium red text-center")
p1=jp.QDiv(a=wp,text="These graphs represent course review analysis")
return wp
jp.justpy(app) 在运行程序时未获得任何输出或出现错误。以下是终端的屏幕截图:
终端SS:

发布于 2021-07-31 13:48:45
import justpy as jp
def app():
wp=jp.QuasarPage()
h1=jp.QDiv(a=wp, text= "Analysis of Course Reviews" ,classes= "text-h2
text-weight-medium red text-center")
p1=jp.QDiv(a=wp,text="These graphs represent course review analysis")
return wp
jp.justpy(app) 上面的代码可以正常工作
https://stackoverflow.com/questions/68235282
复制相似问题