8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

node.js + expressでドットを含むQueryStringを得る

Posted at

node.js + expressでは、以下のようにQueryStringを得られる。

app.get('/', function(request, response) {
  var keyword = request.query.keyword;
});

var color = request.query.item.color;

じゃあ、こういった場合はどうするの・・・

これでは取れません・・・

var color = request.query.item.color;

と、思ったらこれで取れるのでした。

var color = request.query["item.color"];

以外に探しても見つからなかったので・・・

8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?