如何使用浏览器同步设置cookie

时间:2017-04-14 00:13:20

标签: javascript angularjs cookies browser-sync webapi2

我正在使用浏览器同步和web api C#2.0,当我调用一个登录方法时,它会在响应头set-cookie中返回,但该方法不会在浏览器中设置cookie。

browserSync.init({
    notify: false,
    cors: true,
    port: 6543,
    server: {
        baseDir: config.dir.src,
        routes: {
            "/bower_components": "bower_components"
        },
        middleware: [function(req, res, next) {
            next();
        }]
    }
});

修改

登录返回cookie: enter image description here

Cookie浏览器: enter image description here

0 个答案:

没有答案