标签:nod 文件 项目需求 methods net ring pre sed turn
最近项目需求要用到Vue 与 Element UI。但是又不想用Node.js。就结合了Net.MVC来做项目开发。故而做个笔记来记录一些遇到的问题和处理思路
用到MVC主要考虑是到 对 Node.js 不是特别了解。不想给自己埋坑。
而且基于MVC的话,能用到MVC的服务器端渲染,Session,验证,路由机制等等还是非常和嗨皮的。
然而集合MVC的话,比较烦的是在做可复用Component和JS文件的封装上没Node.js那么方便。
Note:不得不吐槽,Vue.js简直和Flash Flex一个设计思路呢
笔记一:
可复用Dialog Component做法思路 VueScript.cshtml:
@{ Layout = null; } <script> @{ string template = Html.Partial("~/Views/Dialog/Com_AddDatabaseDialog_Template.cshtml").ToString().Replace("\r\n",""); } var Com_AddDatabaseDialog = { template: ‘@Html.Raw( template )‘, props: [‘bDefOpen‘], created:function() { }, beforeUpdate: function () { }, computed: { }, data: function() { return { m_bOpen: this.bDefOpen }; }, methods: { } } }; </script>
标签:nod 文件 项目需求 methods net ring pre sed turn
原文地址:http://www.cnblogs.com/linqing/p/7105711.html