0

Leaving aside if X tool/language is open/closed source, expensive or not, the "beautifulness" of the language, etc., also performance not being such an important issue, and focusing only on what technologies (IDE + language + resources + frameworks + community size, etc.), are known for allowing programmers in the most quicker way to put ideas for a web app online.

I mean, there are different focuses on different technologies, which technologies are the most RAD oriented for web apps?

4

1 回答 1

0

看看 VCL.JS,它是一个开源环境,主要用于包含完整堆栈的业务应用程序。(前端、后端、组件、数据绑定、数据库等)

http://vcljs.com

都带有友好的 API

var qur = new V.TQuery(this)
qur.SQL = “Select * from customers”;
qur.open();

var inp = V.TDBInput(this,’itm’);
inp.DataSet = qur;
inp.FieldName = “FirstName”
于 2013-10-31T14:03:58.753 回答