我想在我的自定义控制器中访问 GetDictionaryItem() 函数,所以我需要 Context 对象,我通过纯 jquery Ajax 从自定义控制器访问数据。
我可以访问我的 SurfaceController 中的 GetdictionaryItem,如下所示
var dictionaryHelper = new DictionaryHelper(_routableRequestContext.Application);
string dearDictonaryItem = dictionaryHelper.GetDictionaryItemValueForLanguage("Common/Dear", Thread.CurrentThread.CurrentCulture.Name, "Dear");
但我的自定义控制器中也需要它,
谢谢,谢尔