我正在製作我的第一個django網絡應用程序。位置:將用戶信息保存在HTML python中任何地方
http://joebuty.pythonanywhere.com/
CODE:
<!DOCTYPE html>
<head><style>
body{
text-align:center;
background:url("http://i.imgur.com/qv9As5Y.jpg");
color: black;
font-family: Helvetica;
background-size: cover;
background-position:center center;
background-repeat: no-repeat;
background-attachment:fixed;
}
p{
font-size:24px;
}
input {
border: 0;
padding: 12px;
font-size: 18px;
}
input[type="submit"] {
background:limegreen;
color:black;
}
</style>
</head>
<body>
<!-- I'm a comment. You won't actually see me on the web page.
You should write your header in the line below me! -->
<img src="http://i.imgur.com/iAX7FpC.png" height="250" width="250">
<h1>Joe Buty</h1>
<h1>Data Science</h1>
<h2> Hello,</h2>
<h3><p> Welcome to my webpage. If you are reading this you might be the
first person to visit my website. So thanks.</p>
<p> This page is constantly evolving.</p>
<h2> <p>So if you would like to be in the loop enter your email. Thanks!</p>
<input type='email' placeholder="Email">
<input type='submit'> <!This button needs to do something!>
</body>
有我而做的Codecademy網站教程創建頁面演示了一個電子郵件提交按鈕。現在的問題是,我實際上想將用戶信息保存到數據庫,我不知道如何。
我要去工作,並可能解決這個問題,但如果你可以給我任何指導,我將不勝感激!
讓我知道你是否對我的問題有任何疑問。
歡呼
你應該檢查Django的教程:https://docs.djangoproject.com/en/dev/intro/tutorial01/ –
好像你應該做的更多的教程,如果你有*特定的*問題,然後問這個網站。 – MikeSmithDev
@mikesmithDev我曾問過一個具體的問題。如何讓我的按鈕將信息存儲到數據庫中! –