- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用基本的 Paypal 为 Rails 众筹项目中的一项任务提供资金。当我点击特定任务的资金按钮时,我创建了一个新的资金表格,用于保存用户选择资金的金额,...等等。然而,在新的资金行动中,当用户点击资金时,我希望 Paypal 处理资金。然而,我目前收到错误:“没有路由匹配 [GET] “/cgi-bin/webscr”
这是我的资金控制者
class FundingsController < ApplicationController
def new
if params[:todo_item_id]
@todo_item = TodoItem.find(params[:todo_item_id])
@funding = Funding.new
#(todo_item: @todo_item, user_id: current_user.id)
raise ActiveRecord::RecordNotFound if @todo_item.nil?
end
end
def create
@funding = Funding.new(funding_params)
if @funding.save
redirect_to @funding.paypal_url(funding_path(@funding))
else
render :new
end
end
protect_from_forgery except: [:hook]
def hook
params.permit! # Permit all Paypal input params
status = params[:payment_status]
if status == "Completed"
@funding = Funding.find params[:invoice]
@funding.update_attributes notification_params: params, status: status, transaction_id: params[:txn_id], funded_at: Time.now
end
render nothing: true
end
private
def funding_params
params.require(:funding).permit(:todo_item_id, :user_id, :amount)
end
end
这是我的资金模型:
class Funding < ActiveRecord::Base
has_one :card
belongs_to :todo_item
has_one :user
accepts_nested_attributes_for :card
def payment_method
if card.nil? then "paypal"; else "card"; end
end
serialize :notification_params, Hash
def paypal_url(return_path)
values = {
business: "mybusinesssandbox@gmail.com",
cmd: "_xclick",
upload: 1,
return: "#{Rails.application.secrets.app_host}#{return_path}",
invoice: id,
amount: self.amount,
item_name: self.todo_item.content,
item_number: self.todo_item.id,
quantity: '1',
notify_url: "#{Rails.application.secrets.app_host}/hook"
}
"#{Rails.application.secrets.paypal_host}/cgi-bin/webscr?" + values.to_query
end
end
我不确定为什么这个路由对我不起作用。另外,这是我的 app/views/fundings/new.html.erb::
<h1><strong>Task:</strong> <%=@todo_item.content%><br>
<strong>Project:</strong> <%= @todo_item.todo_list.title%> </h1>
<%= form_for @funding, method: :post do |f| %>
<%= f.hidden_field :todo_item_id, value: @todo_item.id %>
<%= f.hidden_field :user_id, value: current_user.id %>
<%= f.label :amount, "Amount you wish to donate in $" %>
<%= f.number_field :amount %>
<%= submit_tag "Fund", class: 'btn btn_primary' %>
<%= link_to "Cancel", todo_list_path(@todo_item.todo_list_id, @todo_i), class: 'btn' %><br>
<%end%>
我哪里做错了?
最佳答案
"No route matches [GET] "/cgi-bin/webscr"
您正在向您的服务器而不是 Paypal 请求此资源。重新检查:
"#{Rails.application.secrets.paypal_host}/cgi-bin/webscr?" + values.to_query
Rails.application.secrets.paypal_host
可能是空白的!
关于ruby-on-rails - 错误 : No route matches [GET] "/cgi-bin/webscr",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34937332/
我知道使用 GET 和 SET 函数的公共(public)变量的缺点/私有(private)变量的优点,但目前我正在使用 Ogre3D 开发自己的第一个“真实”游戏(C++)..同时,我有时需要 6-
我正在开发一个 GSM/GPRS 应用程序,它将每 10 秒报告一些值。我必须使用的 SIM 卡每月只有 15MB 可用数据。我使用的是 SIM900 GSM 芯片供您引用。 我到达服务器的方式是通过
这三者有什么区别:gets - 它获取带有 '\n' 的行gets.chomp - 它得到一行,但删除 '\n' 这样对吗? gets.chomp! 怎么样? 最佳答案 gets - 它得到一个末尾带
问题和我现在遇到的问题 脚本 顺便说一句,评论是挪威语的,如果它们看起来很奇怪哈哈 Connect-AzureAD #variabel $Users = Get-AzureADUser -All:$t
我现在面临的问题是获取一个 URL,如下所示: www.example.com/example.php?url=www.google.com 现在的问题是,如果我的网址中有一个 get,如下所示: w
我有一个 queryString 传递给 servlet 的 doGet() 方法,如下所示: count=9&preId0=-99&objId0=-99&preId1=-99&objId1=-99&
这是我在 Django 模板中的代码: {% for tag in tags %} {{ tag }} {% endfor %} 在view.py中: def tag_find(
我正在尝试在express.js中为我的网络应用程序创建一个路由系统,我需要知道是否需要使用app.get/post/put/delete.apply以编程方式设置多个功能对于一条路线。 也是如此 a
我正在通过示例查看 A.Mele Django,第 1 章 def post_list(request, category=None): object_list = Post.publishe
如果我想找到与IIS站点或应用程序关联的目录,我该怎么做? 我似乎无法从Get-Website和Get-WebApplication的对象的任何属性中找到任何允许我这样做的东西。 最佳答案 只需查看一
不知道发生了什么。当我执行以下代码时......它运行良好......但它产生了错误。如果我将以下内容粘贴到我的浏览器地址栏中并点击它,我会得到一个 URL。如果我通过 KRL http:get 输入
Curl 提供了一系列不同的带有 X 前缀的 http 方法调用,但也提供了不带 X 的相同方法。我两种都试过了,但我似乎无法弄清楚其中的区别。有人可以快速向我解释这两种操作有何不同吗? 最佳答案 默
request.GET.get 是什么意思?我在 Django 中看到类似的东西 page = request.GET.get('page', 1) 我认为它与类似的东西有关 « 它们是如
我正在从我的 Angular2 站点查询一些 Elasticsearch 服务器。为了帮助提高安全性,我们希望锁定对 GET 请求的访问权限。 Elasticsearch 支持带主体的 GET,但我在
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
调用 HTable.get(List) 返回的 Result 数组的顺序是什么? ? 我的意思是,假设与输入列表的顺序相同是否正确? 最佳答案 结果数组中的顺序将与输入列表的顺序相同。与批处理方法一样
所以我有一个看起来像这样的 JSON 数组: var myData = { foo : { biz : 'baz', fig : 'tree' } }
我正在学习 Ajax、javascript 和 html,并且有一个应用程序可以触发“get”请求,然后再触发另一个“get”请求。这些请求是用户按下按钮的结果。在我的 servlet 中,我使用 T
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 6 年前。 Improv
运行以下 cmdlet 适用于组成员(Amer 域中的组)中的所有用户,无论列出的用户位于哪个域: Get-ADGroupMember -Server amer 但是,当尝试通过管道传输到 Get-
我是一名优秀的程序员,十分优秀!