我以前的帖子:
https://stackoverflow.com/questions/23999475/can-i-use-token-authentication-with-iis-8提到我很难让IIS验证用户并提供Javascript文件。
这让我想知道我是否可以通过一个受
保护的WebAPI方法提供一个本地Javascript文件 [Authorize(Roles = "Admin")]
谁能告诉我这是否可能。
从MVC WebApi获取响应,并使用参数作为响应脚本调用eval
函数
$.get("/api/[ControllarName]", function(scriptResponse){
eval(scriptResponse);
});