gpt4 book ai didi

node.js - 如何强制 Angular 在 HTML5 模式下向服务器发送请求?

转载 作者:搜寻专家 更新时间:2023-10-31 22:36:30 24 4
gpt4 key购买 nike

我正在尝试使用 angular 和 nodejs 构建和 web。我在 /home 路径上加载 Angular,其中 / 包含登录和注册表单。这是我的 Angular 配置:

window.app.config(['$routeProvider', '$locationProvider',
function($routeProvider,$locationProvider) {
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix('!');
$routeProvider.
when('/profile', {
templateUrl: '/views/account.html',

}).
when('/edit', {
templateUrl: '/views/edit.html',

}).
when('/home', {
templateUrl: 'views/index.html'
}).
when('/signout', {
templateUrl: 'views/signout.html'
//on this view i load a controller which submits a form to /signout
}).

otherwise({
redirectTo: '/home'
});
}
]);

在服务器端路由:

    app.get('/',function(){
res.render('index',{
user: req.user? req.user:'guest'
});
});
app.post('/login',function(){
//if success redirect to /home
//if fails redirect to /
});
app.get('/auth/facebook', passport.authenticate('facebook', { scope: [ 'email', 'user_about_me', 'read_stream', 'publish_actions'], failureRedirect: '/' }));
app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/' }), users.authCallback);
app.get('/signout',function(){
//signing out the user here...and redirects to /
});
app.get('/home',function(req,res){
res.render('users/home',{
user: req.user? req.user:'guest',
message: req.flash('error')

})
});
app.get('/profile',function(req,res){
res.render('users/home',{
user: req.user? req.user: 'guest',
message: req.flash('error')

})
});
app.get('/edit',function(req,res){
res.render('users/home',{
user: req.user? req.user:'guest',
message: req.flash('error')

})
});

如果我点击 facebook auth,由于 Angular 路由,我如何通过点击 url /home 上的链接发送请求到 /auth/facebook它把我送到 /home。 Angular 阻止向服务器发送请求,它只是转到 url /home,我尝试通过替换 / 来删除否则 /home。结果是一样的,只是那里没有加载 View 。

最佳答案

来自Docs :

In cases like the following, links are not rewritten; instead, the browser will perform a full page reload to the original link.

  • Links that contain target element. Example: <a href="/ext/link?a=b"
    target="_self">link</a>

  • Absolute links that go to a different domain. Example: <a href="http://angularjs.org/">link</a>

  • Links starting with '/' that lead to a different base path when base is defined. Example: <a href="/not-my-base/link">link</a>

因此,作为最简单的解决方案,只需添加 target="_self"到您的链接。

关于node.js - 如何强制 Angular 在 HTML5 模式下向服务器发送请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19858475/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com