通常,我们对angularjs中的路由有以下类型的配置:
app.config(['$routeProvider',
function($routeProvider) {
//Setting up HTML pages and controllers depending upon the suffix in the URL
$routeProvider.
when('/xyz', {
templateUrl: '/etc/topproducts.html',
我在我的登陆页面网站上创建了一个非常简单的应用程序模拟器。我在本地的方式是在我的登陆页面的index.html中运行(离子服务),这个应用程序是通过这样的iframe运行的:
<iframe src="http://localhost:8100/#/tab/home"></iframe>
我的问题是,当我上传到我的网络主机时,如何引用源代码。
我的文件结构如下所示
x myLandingPage
>index.html //landing page
x mysimulator
x www
x
出于某种原因,我有一个站点执行注销,然后将用户重定向到独立的登陆站点(登陆位于Azure,主主机位于其他地方)。在MVC中,注销操作使用以下(vb)代码:
Function LogOut() As ActionResult
Session.Abandon()
FormsAuthentication.SignOut()
Return Redirect("~/")
End Function
它做了它应该做的事情,但是在上次更新之后(尝试使用html5boilerplate中的一些位--一些css和一些安全头),在Chrome中,在用户被发送回登陆站点之前,有