我创建了这个模型(在控制器中我保存数据):
config: {
fields: [
{name: 'name', type: 'string'},
{name: 'email', type: 'string'},
],
proxy: {
type: 'rest',
url: '/php/user.php',
}
}
我制作的 php (user.php) 文件,但这种方式不起作用:
<?php
include "conect.php";
$n = $_POST['name'];
$e = $_POST['email'];
mysql_query("INSERT INTO user (name, email) VALUES ('$n', '$e')");
?>
那么如何将数据传递给 php 并插入到我的数据库中呢?