这个例子使用文本文件来写入用户的信息创建一个logfile.asp放在每一个asp的页面的顶端当有人来访问你的站点logfile.asp自动把他的信息写入LogFile.txt,如果相关的URl一样的话则不写入文件 File: LogFile.asp 代码如下: <% Dim ValidEntry ‘ Log variable ‘ First set that this log is valid ValidEntry = True ‘ If Session Variable “LogIn
列表中的字典
指示
您将要编写一个添加到travel_log的程序。 您会看到一个travel_log,它是一个包含2个词典的列表。
在第21行上编写一个与下面的代码行一起使用的函数,将俄罗斯的条目添加到travel_log 。
add_new_country("Russia", 2, ["Moscow", "Saint Petersburg"])
You've visited Russia 2 times.
You've been to Moscow and Saint Petersbu
在Web开发中,后端代码写起来其实是相当容易的。
例如,我们编写一个REST API,用于创建一个Blog:
api
post('/api/blogs')
def api_create_blog():
i = ctx.request.input(name='', summary='', content='')
name = i.name.strip()
summary = i.summary.strip()
content = i.content.strip()
if no