小编jea*_*ean的帖子

Delayed_job:如何使用handle_asynchronously处理函数?

功能是:

def createuser(name,pass,time)
   puts name,pass,time
end
Run Code Online (Sandbox Code Playgroud)

我尝试:

handle_asynchronously :createuser("a","b","c")
Run Code Online (Sandbox Code Playgroud)

并得到一个错误:语法错误,意外'(',期待keyword_end

谢谢.

===编辑===

北京的japen和web服务器中的用户数据库.所以我用这种方式创建一个用户.

def createuser(name,pass,time)
   Net::HTTP.get(URI.parse("http://www.example.net/builduser.php?hao=#{name}&mi=#{pass}&da=#{time}"))
end
Run Code Online (Sandbox Code Playgroud)

ruby gem delayed-job ruby-on-rails-3

6
推荐指数
1
解决办法
1万
查看次数

如何使用电子邮件地址作为rails PUT请求中的参数?

我在config.rb中配置了一个路由

resources :password
Run Code Online (Sandbox Code Playgroud)

当参数不是电子邮件地址时,它工作正常.

当参数是电子邮件地址时,它将显示错误:

在2012-02-22 17:04:17 +0800开始PUT"/password/example@gmail.com.json"为127.0.0.1

ActionController :: RoutingError(没有路由匹配[PUT]"/ password/example@gmail.com.json"):

UPDATE1

这是我的密码控制器

  def update
    return_info = User.change_password(params[:id],params[:old],params[:newpw],params[:newpw2])

    respond_to do |format|
      format.json { render :json => {:info => t(return_info)} }
    end

  end
Run Code Online (Sandbox Code Playgroud)

谢谢.

ruby-on-rails ruby-on-rails-3

5
推荐指数
2
解决办法
2678
查看次数

使用json.net解析json字符串?

我在C#中有一个类似下面的字符串.我尝试使用JSON.NET但无法弄清楚如何检索该值.

"{[{'Name':'AAA','Age':'22','Job':'PPP'},
{'Name':'BBB','Age':'25','Job':'QQQ'},
{'Name':'CCC','Age':'38','Job':'RRR'}]}";
Run Code Online (Sandbox Code Playgroud)

我想要

foreach (user in users){
   Messagebox.show(user.Name,user.Age)
}
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激.

c# json json.net

5
推荐指数
1
解决办法
1万
查看次数

如何按价格在产品购买中对产品进行分类?

首先,我从IAP获得了一些产品

-(void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response  
{  
    [productDetailsList addObjectsFromArray: response.products];  
    [productDisplayTableView reloadData];  
}
Run Code Online (Sandbox Code Playgroud)

如何按产品价格将它们放入uitableview中?谢谢.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  
{  
    static NSString *GenericTableIdentifier = @"GenericTableIdentifier";  
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: GenericTableIdentifier];  
    if (cell == nil) {  
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
                                       reuseIdentifier:GenericTableIdentifier] autorelease];
    }   

    SKProduct *thisProduct = [productDetailsList objectAtIndex:row];
    NSUInteger row = [indexPath row];

    [button setTitle:localizedMoneyString forState:UIControlStateNormal];

    [cell.contentView addSubview:button];

    return cell; 
}
Run Code Online (Sandbox Code Playgroud)

iphone objective-c in-app-purchase ios

2
推荐指数
1
解决办法
2255
查看次数

咖啡脚本中意外的'{'

我在咖啡脚本中写了一些行来初始化jquery-ui日期选择器

#this code is working fine
$(".picktime").datepicker
  numberOfMonths: 1

#this give me an Error: Parse error on line 3: Unexpected '{'
$(".picktime").datepicker
  numberOfMonths: 1
  showButtonPanel: true 
Run Code Online (Sandbox Code Playgroud)

谢谢.

javascript coffeescript

1
推荐指数
1
解决办法
1238
查看次数