如何获取当前页面的网址?
我试过了:
public static **char** getChar() throws IOException
{
String s = getString();
return s.charAt(0);
}
**int** choice = getChar();
switch(**choice**)
{
case **'s'**: {}
case 'r': {}
case 'n': {}
case 'g': {}
case 'b': {}
case 'a': {}
case 'd': {}
default: {}
}
但这不能说出任何东西。
答案 0 :(得分:10)
您需要在_config.yml
中定义该内容。
默认为空。
一旦定义,您可能需要{{site.url}}{{page.url}}
之类的东西来获得整个路径。
要捕获变量中的整个路径,您可以使用
{% capture url_path %}{{site.url}}{{page.url}}{% endcapture %}