我想在我的自定义Controller中访问GetDictionaryItem()函数,所以我需要Context对象,我通过普通的jquery Ajax从Custom控制器访问数据。
我可以访问SurfaceController中的GetdictionaryItem,如下所示
var dictionaryHelper = new DictionaryHelper(_routableRequestContext.Application);
string dearDictonaryItem = dictionaryHelper.GetDictionaryItemValueForLanguage("Common/Dear", Thread.CurrentThread.CurrentCulture.Name, "Dear");
但我在自定义控制器中也需要它,
谢谢, 舍尔
答案 0 :(得分:0)
创建自定义控制器作为表面控制器,
感谢@seraphym