错误请求,错误的URI 400错误

时间:2013-12-04 15:44:45

标签: javascript ruby ajax jquery ruby-on-rails-4

我正在'使用我以前没有做过的导航网络应用程序'。我的目标是在不刷新页面的情况下将产品添加到数据库

我有一个用户和产品控制器。用户在其个人页面中添加了产品。但我得到400错误。

Bad Request

bad URI `/users/function (options) { return Utils.build_path([], ["format"],[2,[2,[7,"/",false],[6,"products",false]],[1,[2,[8,".",false],[3,"format",false]],false]], arguments); }'.

以及

bad URI `/users/function%20(options)%20%7B%20%20return%20Utils.build_path([],%20[%22format%22],%20[2,[2,[7,%22/%22,false],[6,%22products%22,false]],[1,[2,[8,%22.%22,false],[3,%22format%22,false]],false]],%20arguments);%20%20%7D'.

产品控制器代码:

class ProductsController < ApplicationController

respond_to :html, :json

    def create
        @product = Product.new(product_params)
        respond_to do |format|
            if @product.save
                format.html do
                    redirect_to '/'
                end
                format.json { render json: @product.to_json }
            else
                # Add a handler for unsuccessful cases
            end
        end

    end
    def product_params
        params.require(:product).permit(:title, :units)
    end
end

用户控制器,show方法:

def show
    @user = User.find(params[:id])
    @product = Product.new
end

具有ajax功能的jQuery函数:

    $('.edit-box > form input[type=submit]').click(function(e) {
        closeEdit();
        event.preventDefault();
        $.ajax({
            url: Routes.products_path,
            dataType: 'json',
            type: 'POST'
        })
     });

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

Routes.product_path是一个javascript函数,因此您需要使用括号调用它。如果不调用它,你会将函数代码作为ajax调用的url,这就是你得到 BAD URI 错误的原因。

尝试:

$('.edit-box > form input[type=submit]').click(function(e) {
    closeEdit();
    event.preventDefault();
    $.ajax({
        url: Routes.products_path(),
        dataType: 'json',
        type: 'POST'
    })
 });

无论如何,您应该设置一些参数来发送,或者如果允许,您的控制器将创建一个空产品,或者如果您对模型进行了一些验证,则会返回 500错误

要发送参数,请使用data选项。 (此处有文档:http://api.jquery.com/jQuery.ajax

$('.edit-box > form input[type=submit]').click(function(e) {
   closeEdit();
   event.preventDefault();
   $.ajax({
      url: Routes.products_path(),
      dataType: 'json',
      type: 'POST',
      data: {key1: "value1", key2: "value2", ... }
  })
});

更新

要获取值,您可以在表单上使用serializeArray() jQuery方法,但是您将获得一个包含表单输入namevalue的对象数组。如果你想要一个普通的对象,你可以轻松地将serializeObject()方法添加到jQuery中。 (Source

$.fn.serializeObject = function()
{
    var o = {};
    var a = this.serializeArray();
    $.each(a, function() {
        if (o[this.name] !== undefined) {
            if (!o[this.name].push) {
                o[this.name] = [o[this.name]];
            }
            o[this.name].push(this.value || '');
        } else {
            o[this.name] = this.value || '';
        }
    });
    return o;
};

/* Now you can use the method to serialize your form to an object */
var dataToSend = $('.edit-box > form').serializeObject()