我是初学者并且喜欢它,但我希望有人可以帮助我查看我网站中的网址。
我可以使用看起来像这样的网址在ember中加载模板:
www.test.com/#home
它会加载主页模板,没问题。
但是,如果我在网站内部使用链接到主页,则URL将如下所示:
www.test.com/#/home
我希望链接总是看起来像第一个例子。
有什么想法吗?
答案 0 :(得分:0)
将href设为“#/ home”
String sql1 = "select test.currval from dual";
pst = conn.prepareStatement(sql1);
rs = pst.executeQuery();
int currentValue = 0;
if(rs.next()){
currentValue = rs.getInt(1);
}
currentValue -= 1;
String sql2 = "alter sequence Test start with '"+currentValue+"'";
pst = conn.prepareStatement(sql2);
pst.execute();
pst = conn.prepareStatement(sql1);
rs = pst.executeQuery();
if(rs.next()){
JOptionPane.showMessageDialog(null, rs.getInt(1),"Current Sequence Number",JOptionPane.INFORMATION_MESSAGE); ;
}
参考此http://todomvc.com/examples/emberjs/ ember Demo TODO