0

致力于使用 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:

终端 SS

4

1 回答 1

0
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) 

上面的代码有效

于 2021-07-31T13:48:45.167 回答