有没有人尝试过使用 IronPython 的 ASP.NET MVC?最近做了很多 Python 开发,在我进入一个潜在的 ASP.NET MVC 项目时继续使用该语言会很好。
我对利用 .NET 功能(例如 LINQ)利用 Python 的动态方面特别感兴趣,并且想知道这是否可行。对于某些动态编程可能可行的另一条路线是 C# 4.0 及其dynamic
关键字。
想法、经验?
有没有人尝试过使用 IronPython 的 ASP.NET MVC?最近做了很多 Python 开发,在我进入一个潜在的 ASP.NET MVC 项目时继续使用该语言会很好。
我对利用 .NET 功能(例如 LINQ)利用 Python 的动态方面特别感兴趣,并且想知道这是否可行。对于某些动态编程可能可行的另一条路线是 C# 4.0 及其dynamic
关键字。
想法、经验?
是的,DLR 团队有一个 MVC 示例。
您可能还对Spark感兴趣。
在 ASP.NET MVC 中使用 IronPython:http: //www.codevoyeur.com/Articles/Tags/ironpython.aspx
此页面包含以下文章:
我目前正在做这件事。它已经支持了很多东西:https ://github.com/simplic-systems/ironpython-aspnet-mvc
更多信息:
导入aspnet
模块
import aspnet
您可以编写自己的控制器
class HomeController(aspnet.Controller):
def index(self):
return self.view("~/Views/Home/Index.cshtml")
您可以自动注册所有控制器
aspnet.Routing.register_all()
您可以使用不同的 http 方法
@aspnet.Filter.httpPost
def postSample(self):
return self.view("~/Views/Home/Index.cshtml")
还有更多。这是一个非常简短的示例
# ------------------------------------------------
# This is the root of any IronPython based
# AspNet MVC application.
# ------------------------------------------------
import aspnet
# Define "root" class of the MVC-System
class App(aspnet.Application):
# Start IronPython asp.net mvc application.
# Routes and other stuff can be registered here
def start(self):
# Register all routes
aspnet.Routing.register_all()
# Set layout
aspnet.Views.set_layout('~/Views/Shared/_Layout.cshtml')
# Load style bundle
bundle = aspnet.StyleBundle('~/Content/css')
bundle.include("~/Content/css/all.css")
aspnet.Bundles.add(bundle)
class HomeController(aspnet.Controller):
def index(self):
return self.view("~/Views/Home/Index.cshtml")
def page(self):
# Works also with default paths
return self.view()
def paramSample(self, id, id2 = 'default-value for id2'):
# Works also with default paths
model = SampleModel()
model.id = id
model.id2 = id2
return self.view("~/Views/Home/ParamSample.cshtml", model)
@aspnet.Filter.httpPost
def postSample(self):
return self.view("~/Views/Home/Index.cshtml")
class SampleModel:
id = 0
id2 = ''
class ProductController(aspnet.Controller):
def index(self):
return self.view("~/Views/Product/Index.cshtml")