功能是:
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) 我在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)
谢谢.
我在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)
任何帮助将不胜感激.
首先,我从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) 我在咖啡脚本中写了一些行来初始化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)
谢谢.
c# ×1
coffeescript ×1
delayed-job ×1
gem ×1
ios ×1
iphone ×1
javascript ×1
json ×1
json.net ×1
objective-c ×1
ruby ×1