我要填充的JSON响应如下:
{
"vendor":
{
"name": "Mozelle Luettgen MD",
"email": "tyqmn@example.net",
"phone_no": "9999997660",
"addressline1": "Kulas Stravenue",
"addressline2": "64636 Lynch Springs",
"landmark": "Apt. 142",
"city": "South Hannaview",
"state": "North Dakota",
"country": "Palau",
"pincode": "53912-6122",
"latitude": 50.8247548421224,
"longitude": -81.8429583068792,
"status": true
}
}
我的创建供应商的控制器代码是
def create
@vendor = Vendor.new(vendor_params)
respond_to do |format|
if @vendor.save
format.html { redirect_to @vendor, notice: 'Vendor was
successfully created.' }
format.json { render :show, status: :created, location: @vendor,
:msg => { :status => "ok" , :result => @vendor.json, :message =>
"Succesfully Created" }
}
else
format.html { render :new }
format.json { render json: @vendor.errors, status:
:unprocessable_entity,
:msg =>
{ :status => "Error", :message => "Unprocessable Entity" }
}
end
end
end
def vendor_params
params.require(:vendor).permit(:name, :email, :phone_no,
:addressline1, :addressline2, :landmark,
:city, :state, :country, :pincode, :latitude, :longitude, :status,
{products_attributes: [:id, :product_name, :price]},
{vendor_products_attributes: [:id, :vendor_product_id, :vendor_id,
:product_id, :copies, :_destroy]})
end
在使用帖子运行此链接http://localhost:3000/vendors/create_vendor时,状态显示200 ok,但是当我查找JSON响应时,对于创建的供应商,它会抛出意外的'<'错误。我做错了什么。有人可以详细说明
答案 0 :(得分:0)
我遇到了同样的问题,并且能够通过更改同步链接来对其进行排序
答案 1 :(得分:0)
确保在User=require('../Models/user');
和主route/user.js
中都没有两次声明模型类的var server/app.js file
对象
您两次声明了模型类的对象
答案 2 :(得分:0)
邮递员申请中的此设置帮助我解决了此问题
全局代理配置:开启
代理类型:HTTPS
代理服务器:abc.xyz.abc.com:8080
使用系统代理:关闭
答案 3 :(得分:-1)
原因是您可能在尝试连接到邮递员时登录其他浏览器或其他某个位置打开了会话。这就是你得到“意外”>'“的原因。
要避免这种情况,请使用登录api登录邮递员并尝试点击您的服务。它肯定会起作用。