本文介绍了如何在nopCommerce中从OrderPlaceEvent重定向Mvc Action的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用nopCommerce3.40
I am using nopCommerce3.40
我正在使用nopCommerce的OrderPlacedEvent.我想从此void方法重定向到我的控制器操作.
I am using OrderPlacedEvent of nopCommerce. I want to redirect to my controller action from this void method.
public class OrderPlaceEvents : IConsumer<OrderPlacedEvent>
{
public void HandleEvent(OrderPlacedEvent eventMessage)
{
//some code for redirect to controller action
}
}
如何从HandleEvent方法重定向mvc操作
how to redirect in mvc action from HandleEvent method
推荐答案
这是不可能的.此外,您不应该这样做,因为调用了一些与下订单有关的其他操作.
It's not possible. Furthermore, you should not do it because some further actions related to order placement are invoked.
这篇关于如何在nopCommerce中从OrderPlaceEvent重定向Mvc Action的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!