进入模板目录 TPLdefaultIndex(如果 Index 文件夹不存在,则创建一个)。Index 文件夹对应存放 Index 模块(IndexAction.class.php)的模板文件,不能随意命名。
在 Index 文件夹内创建一个名为 form.html 的文件,文件采用 UTF-8 编码,内容如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>表单数据测试</title> </head> <body> <form action="-Article/insert2" method="post"> <p>用户名: <input type="text" name="username" /></p> <p>密 码: <input type="password" name="password" /></p> <p>电子邮箱: <input type="text" name="email" /></p> <p><input type="submit" value=" 提交 " /></p> </form> </body> </html>
-Article 是 ThinkPHP 模板中的特殊字符串,在输出模板之前系统会自动将其替换成当前模块的 URL 地址。此处是替换成 Myapp/index.php/Index ,具体参见《ThinkPHP 模板特殊字符串替换》,所以该例子中 action="-Article/insert2" 表示向当前模块的 insert2 操作提交数据。
提示:由于只是简单的输出 form.html 页面而没有其他逻辑操作,因此不需要在 Index 模块内创建对应的操作。
访问该页面:http://127.0.0.1/html/Myapp/index.php/Index/form,可以看到刚才创建的表单。