WordPress 4.3 将用 Node.js 重写

来源:开源中国社区 作者:oschina
  


WordPress 核心团队的主要开发者之一,Ryan Boren 说:“WordPress 4.3 版本一个重大改变是,4.3版本将用 Node.js 重写,同时将向后兼容以前的版本。”

要 WordPress 4.3 完全拒绝 PHP 还是不可能的,但是开发者计划重写一些基本的核心类,包括 WP_Query 、WP_Erro、和 WP_Object_Cache。

wordpress in node

值得注意的是,发给 WordPress 数据库的请求不仅可以在服务器端执行,也可以在客户端用 JSON REST API 执行,此功能在 4.3 版本上实现。

代码可能是这样:

1
2
3
4
5
6
7
8
9
10
11
12
var query = new wp.Query ();
query.setQuery ({
    post_type: 'post',
    post_status: 'publish',
    posts_per_page: 5
});
 
_.each (query.getPosts (), function (post) {
    console.log (post.title);
    console.log (post.content);
    console.log (post.author);
});

另外,大量专业的供应商正与核心开发团队紧密合作,新的版本有望完全向后兼容。官方 WordPress 4.3 版本将在2015年10月发布。

Source:WBD

文章转载自:开源中国社区 [http://www.oschina.net]
本文标题:WordPress 4.3 将用 Node.js 重写
本文地址:http://www.oschina.net/news/61994/wordpress-4-3-will-be-rewritten-in-node-js


时间:2015-04-30 08:36 来源:开源中国社区 作者:oschina 原文链接

好文,顶一下
(2)
100%
文章真差,踩一下
(0)
0%
------分隔线----------------------------


把开源带在你的身边-精美linux小纪念品
无觅相关文章插件,快速提升流量