如何提供Ajax发布请求

时间:2012-07-17 17:23:54

标签: ruby-on-rails ajax controller

这个问题乍一看似乎很简单,但却减慢了我的工作速度!请帮我弄清楚我在哪里弄错了。

我想使用Ruby-on-Rails构建一个服务器,它将具有一个主要功能:使用来自客户端JS的一些数据来发布请求。然后使用jquery的Ajax方法发送异步请求:

    function processPeople() {
        SOME.api(".get", {owner_id:frnds.response[i].uid,count:"3"}, function(posts) {
                                var usefulPosts = posts.response;
                                for (var i = 1; i <= 2; i++) {

            $.ajax({
                type: 'POST',
                url: 'wallposts',
                data: {uid: usefulPosts[i]["from_id"], uniqpost_id: usefulPosts[i]["id"], tent:usefulPosts[i]["text"]}
            });

    };
    });
    i++;
    if (i<2) {
        setTimeout(processPeople, 1000);
    }
}

在这里我的控制器发送了帖子请求:

def create
    # debugger

    if !(Wallpost.from_user(params[:uid]).find_by_uniqpost_id(params[:uniqpost_id]))
    @newWP = Wallpost.new(:uid => params[:uid], :content => params[:content], 
            :uniqpost_id => params[:uniqpost_id])
    @newWP.save 


end

如果我只想在服务器端保存数据并且没有更多内容,我会在服务器端做什么呢?每当我尝试将信息发布到我的服务器时,它会以500错误回答我:

ActionView::MissingTemplate (Missing template wallposts/create, application/create with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder, :coffee]}. Searched in:
  * "/home/yurgen/rails_project/vkraigslist/app/views"

1 个答案:

答案 0 :(得分:1)

您需要指定控制器的返回值。 HTTP协议请求。

如果您不想返回任何代码,只需输入

即可
head :ok

在控制器的末尾。