代码之家  ›  专栏  ›  技术社区  ›  Sean

应用程序引擎模板值未显示

  •  0
  • Sean  · 技术社区  · 14 年前

    主.py:

    def get(self):
        ...
        question = randomLine("data/questions.csv")
        data = question.split(',')[0]
    
        template_values = {
            'data': data,
            }
    
        path = os.path.join(os.path.dirname(__file__), 'index.html')
        self.response.out.write(template.render(path, template_values))
    

    索引.html:

    ...
    <div id="question">
        <p>{{ data }}</p>
    </div>
    ...
    
    1 回复  |  直到 14 年前
        1
  •  0
  •   Sean    14 年前

    main.py ,但我没有更新 app.yaml