我有以下代码:public ActionResult SomeAction(){ return new JsonpResult { Data = new { Widget = "some partial html for the widget" } };}我想对其进行修改,以便可以public ActionResult SomeAction(){ // will render HTML that I can pass to the JSONP result to return. var partial = RenderPartial(viewModel); return new JsonpResult { Data = new { Widget = partial } };}这可能吗?有人可以解释一下吗?注意,我在发布解决方案之前编辑了问题。
3 回答
- 3 回答
- 0 关注
- 292 浏览
添加回答
举报
0/150
提交
取消