如何用$window.open()打开局部视图?
How to open partial view with $window.open()?
如何在 $window.open()
中设置 url .. 这样的 $window.open("/account/something")
?我试过了,但我总是得到没有任何内容的默认页面。
您可以简单地使用
$window.open('/controller-Name/action-method-Name');};
这将找到操作方法和 return 视图。
如果问题仍然存在,请调试您的操作方法一次。
如何在 $window.open()
中设置 url .. 这样的 $window.open("/account/something")
?我试过了,但我总是得到没有任何内容的默认页面。
您可以简单地使用
$window.open('/controller-Name/action-method-Name');};
这将找到操作方法和 return 视图。
如果问题仍然存在,请调试您的操作方法一次。