如何在反应中使用过滤器?

时间:2019-04-20 10:38:00

标签: reactjs ethereum

我正在使用以太坊构建并签入应用程序。

var cloudStorageAccount = CloudStorageAccount.Parse(ConnectionString); var storageCredentials = new StorageCredentials(cloudStorageAccount.Credentials.AccountName, cloudStorageAccount.Credentials.KeyName); checkinplaceid,我想按ID过滤数组。

现在,我的代码就是这样

username

请给我任何建议。

1 个答案:

答案 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;
    }
}