我正在使用以太坊构建并签入应用程序。
var cloudStorageAccount = CloudStorageAccount.Parse(ConnectionString);
var storageCredentials = new StorageCredentials(cloudStorageAccount.Credentials.AccountName, cloudStorageAccount.Credentials.KeyName);
有checkin
和placeid
,我想按ID过滤数组。
现在,我的代码就是这样
username
请给我任何建议。
答案 0 :(得分:2)
使用.filter()可以根据条件过滤数组,该函数返回满足条件的项目数组。
filter()方法创建一个数组,其中包含所有通过测试的数组元素(作为函数提供)。
package wsdemo2;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/wsdemo2")
public class wsdemo2 {
@GET
@Produces(MediaType.TEXT_HTML)
@Path("{name}")
public String sayhello2(@PathParam("name") String name) {
String response = "<h1>Your name is > "+name+"</h1>";
return response;
}
}