Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以同时调用两个都返回部分视图的 ActionResult /Controller 函数吗?
不,您不能使用一个 URI 同时调用两个操作。这是因为路由表只会匹配一个路由,然后将执行传递给该控制器和操作。您可以从该操作中调用另一个操作,但我不建议这样做,只是让您的客户端向服务器发送另一个请求以执行您要运行的其他操作。