0
如何使用Meteor.js編程重定向到不同的URL。Meteor.js編程重定向到不同的網站
我試過但沒有工作。
Template.someTemplate.events({
"click #process": function(e){
e.preventDefault();
//Do some important stuff
window.location = "https://example.com";
}
});