为什么页面跳转不正确?

两个不同权限对应两个不用页面
前面的http.post服务已经success下面开始是success下面的代码
alert(data.roles[0]);//这是提示权限
if (data.roles[0] = "inpector")

                {
                    $window.location.href = "lcdFaultInsert.html";
                }                else
                {
                    $window.location.href = "faultDeviceInsert.html";
                }

两个不同账号登录在alert那里确实是不同的权限,但是页面跳转却都是进第一个页面?请问怎么解决?


潇潇雨雨
浏览 756回答 1
1回答

慕森卡

if (data.roles[0] == "inpector")注意是==
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript