2017-04-16 16 views
0

使用web.py:のpython web.py書き込みPythonプログラムを書くための

[{'user_id': '1146214671', 'user_name': 'Xiaohong Xu', 'user_unit': 'Toronto, Ontario'}, 
... 
... 
{'user_id': '668347108', 'user_name': 'Lynn Zou', 'user_unit': 'Lead Software Engineer I at American Institutes for Research (AIR)'}] 

とテンプレート:

class user_name_friend_sub: 
    def POST(self): 
     u_n = web.input() 
     u_name = u_n.user_name 
     u_id = u_n.user_id 

     user_friends_list = self.user_info_page(u_name,u_id) 
     return render.user_friends(user_friends_list) 

user_friends_listは次のように、多くのDICを含むリストでありますhtmlファイルは - user_friends.htmlは次のとおりです。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 
<head> 
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> 
    <title>Document</title> 
    <style> 
     h1 { 
      text-align: center; 
      font-size:30px; 
     } 
    </style> 
</head> 
<body> 
    <h1>User friends data</h1> 
    $def with (user_friends_list) 
    <ul> 
    $for user_friend in user_friends_list: 
     <li>$user_friend["user_name"]</li> 
    </ul> 
</body> 
</html> 

実行し、そのエラー:

File "templates\user_friends.html", line 21 
def with (user_friends_list) 
    ^
SyntaxError: invalid syntax 

Template traceback: 
    File 'templates\\user_friends.html', line 21 
     </html> 

は、しかし、私はほとんどすべてのHTML要素を削除すると、なっuser_friends.html:それはOK走る

$def with (user_friends_list) 
    <ul> 
    $for user_friend in user_friends_list: 
     <li>$user_friend["user_name"]</li> 
    </ul> 

、 あなたは

答えて

0

Pythonはサーバ - である私にその理由を教えてください可能性がありサイド言語。つまり、Webページを介して直接実行することはできません(ユーザーの視認性から隠されています)。pythonコードを.pyファイルで宣言する必要があります。あなたのHTMLコードは要素をcgiエンドポイントに送信することができます。例えば、pythonがダイジェストして値を返すことができます。www.tutorialspoint.com/python/python_cgi_programming.htm

+0

申し訳ありませんが、わかりません – bin

関連する問題