让我先说一下我是AngularJS&的新手。笨。 试图创建单页面应用程序。在中心它显示新闻故事。旁边是提交新故事的表格。我的故事从数据库显示得很好。但是当我尝试从侧面的表单创建新故事时,它会在数据库中输入0。我假设我的模型功能有问题。它可能是基本的,因为没有正确编码的信息在MVC之间传递。
的index.php
<div class="span2" ng-controller="NewStoryCtrl">
<h4>New Story</h4>
<form name="newStory">
<label for="title">Title: </label>
<input type="text" name ="title" ng-model="news.title" required>
<label for="text">Text: </label>
<textarea type="text" name="text" ng-model="news.text"required></textarea>
<button ng-click="createNews()">Submit</button>
</form>
controller.js
function NewStoryCtrl($scope, $http) {
$scope.news = {title:$scope.title, text:$scope.text};
$scope.createNews = function(){
$http.post('/ci/index.php/news/create/',$scope.news);
};}
news.php(控制器)
public function create() {
$this->news_model->set_news();
}
news_model.php(模特)
public function set_news() {
$this->load->helper('url');
$slug = url_title($this->input->post('title'), 'dash', TRUE);
$data = array(
'title' => $this->input->post('title'),
'slug' => $slug,
'time' => time(),
'text' => $this->input->post('text')
);
return $this->db->insert('news', $data);
}
模型中的内容是我最初的CI新闻教程中剩余的内容。这就是为什么我认为错误就在这里。 将信息从controllers.js传递给模型的最佳方法是什么?
答案 0 :(得分:6)
正如所料,我的问题是没有获得正确的数据类型。 Controller期待一个变量,但是在Angular控制器中我把它作为JSON传递。我没有经历过解码。
news.php (控制器)
public function create() {
$data = json_decode(file_get_contents('php://input'), TRUE);
$this->news_model->set_news($data);
}
然后在模型中,我只需要将它作为参数传递给set_news()。我最后改变了一些变量名,只是为了个人澄清。
* news_model.php *
public function set_news($data) {
$this->load->helper('url');
$slug = url_title($data['title'], 'dash', TRUE);
$retval = array(
'title' => $data['title'],
'slug' => $slug,
'time' => time(),
'text' => $data['text']
);
return $this->db->insert('news', $retval);
}
答案 1 :(得分:1)
我没有使用 Angular.js ,但您的数据格式可能正确。例如, Backbone 会发送一个名为model的$_POST
变量,其中包含 json 编码数据,正如我所使用的那样。
当您尝试 AJAX 工作时,必须使用 Firebug , Webdev 或其他工具来查看正在发生的事情这个;否则你会发疯的。查看发送到后端的变量 - 可能是描述的,需要收集的编码单var
,json_decode,CLEAN&amp;验证然后使用。