1

と言っていただけると本当に嬉しいです

a {
    color: $COLOR;
}

でリクエストし/styles.css?COLOR=redます。これを行う方法はありますか?なども承ります$_GET['COLOR']

これに対する直接のサポートがない場合 (そして、私が見つけられなかった場合)、compileこれを達成するために関数を利用できる方法はありますか?

4

1 に答える 1

0

You'll need to code this as a 2-step process:

  1. Use regular express code with a simple templating language like ejs or underscore templates to interpolate the color value into the stylus file.
  2. Then render the stylus file and respond with the CSS
于 2013-06-24T02:44:23.403 に答える