私はJava playフレームワーク。
/ something?x = 10&y = 20&z = 30
ここで、「?」の後にすべてのパラメータを取得したいkey ==> valueペアとして。
クエリパラメータをroutesファイルに組み込むことができます。
http://www.playframework.com/documentation/2.0.4/JavaRouting 「デフォルト値を持つパラメーター」セクション
または、アクションでそれらを要求できます。
public class Application extends Controller {
public static Result index() {
final Set<Map.Entry<String,String[]>> entries = request().queryString().entrySet();
for (Map.Entry<String,String[]> entry : entries) {
final String key = entry.getKey();
final String value = Arrays.toString(entry.getValue());
Logger.debug(key + " " + value);
}
Logger.debug(request().getQueryString("a"));
Logger.debug(request().getQueryString("b"));
Logger.debug(request().getQueryString("c"));
return ok(index.render("Your new application is ready."));
}
}
たとえば、http://localhost:9000/?a=1&b=2&c=3&c=4
コンソールに印刷します。
[debug] application - a [1]
[debug] application - b [2]
[debug] application - c [3, 4]
[debug] application - 1
[debug] application - 2
[debug] application - 3
c
はURLに2回あることに注意してください。
Play 2.5.xでは、conf/routes
で直接作成され、デフォルト値を設定できます:
# Pagination links, like /clients?page=3
GET /clients controllers.Clients.list(page: Int ?= 1)
あなたの場合(文字列を使用する場合)
GET /something controllers.Somethings.show(x ?= "0", y ?= "0", z ?= "0")
強い型付けを使用する場合:
GET /something controllers.Somethings.show(x: Int ?= 0, y: Int ?= 0, z: Int ?= 0)
詳しい説明については、 https://www.playframework.com/documentation/2.5.x/JavaRouting#Parameters-with-default-values を参照してください。
すべてのクエリ文字列パラメーターをマップとして取得できます。
Controller.request().queryString()
このメソッドはMap<String, String[]>
オブジェクトを返します。
FormFactory を使用できます。
DynamicForm requestData = formFactory.form().bindFromRequest();
String firstname = requestData.get("firstname");
Java/Play 1.x
あなたはそれらを取得します:
Request request = Request.current();
String arg1 = request.params.get("arg1");
if (arg1 != null) {
System.out.println("-----> arg1: " + arg1);
}