diff options
author | Bilibili_BHznJNs <67158072+BHznJNs@users.noreply.github.com> | 2021-06-09 16:34:39 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-06-10 00:01:04 +0800 |
commit | 6b4c49a6b7e4281a148733c24f007d9b9613b280 (patch) | |
tree | a9114c9dcb5abf5e43596735efc44e2d6bdc7999 /files/zh-cn/learn/tools_and_testing | |
parent | 73e2575b4da3ce622a6e68d87c03f1f352a28733 (diff) | |
download | translated-content-6b4c49a6b7e4281a148733c24f007d9b9613b280.tar.gz translated-content-6b4c49a6b7e4281a148733c24f007d9b9613b280.tar.bz2 translated-content-6b4c49a6b7e4281a148733c24f007d9b9613b280.zip |
Update index.html
Diffstat (limited to 'files/zh-cn/learn/tools_and_testing')
-rw-r--r-- | files/zh-cn/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/files/zh-cn/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.html b/files/zh-cn/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.html index 445a22b64f..388075622d 100644 --- a/files/zh-cn/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.html +++ b/files/zh-cn/learn/tools_and_testing/client-side_javascript_frameworks/introduction/index.html @@ -55,17 +55,17 @@ original_slug: Learn/Tools_and_testing/Client-side_JavaScript_frameworks/介绍 <h3 id="Vue">Vue</h3> -<p>Evan You first released <a href="https://vuejs.org/">Vue</a> in 2014, after working on and learning from the original <a href="https://angularjs.org/">AngularJS</a> project. Vue is the youngest of the big four, but has enjoyed a recent uptick in popularity.</p> +<p>在工作和学习了 <a href="https://angularjs.org/">AngularJS</a> 的源码之后,Evan You (尤雨溪) 在2014年第一次发布 <a href="https://vuejs.org/">Vue</a> 。Vue 是“四大框架”中最年轻的,但在最近,它的人气迅速上升。</p> -<p>Vue, like <a href="https://angularjs.org/">AngularJS</a>, extends HTML with some of its own code. Apart from that, it mainly relies on modern, standard JavaScript.</p> +<p>Vue,就像 <a href="https://angularjs.org/">AngularJS</a>,用它自己的代码拓展了 HTML。除此之外,它完全依赖于现代的、标准化的 JavaScript。</p> <h3 id="React">React</h3> -<p>Facebook 在 2013 发布了 React。 在当时 React 已经被Facebook内部用来解决许多问题。 严格来说 React 本身并不是框架,而是一个用来渲染UI 组件的库。 React is used in combination with <em>other</em> libraries to make applications — React and <a href="https://reactnative.dev/">React Native</a> enable developers to make mobile applications; React and <a href="https://reactjs.org/docs/react-dom.html">ReactDOM</a> enables them to make web applications, etc.</p> +<p>Facebook 在 2013 发布了 React。在当时 React 已经被Facebook内部用来解决许多问题。 严格来说 React 本身并不是框架,而是一个用来渲染UI 组件的库。 React 被用来组合<em>其它</em>用来构建应用的库 —— React 和 <a href="https://reactnative.dev/">React Native</a> 让开发者能够用 JavaScript 构建移动应用; React 和 <a href="https://reactjs.org/docs/react-dom.html">ReactDOM</a> 使他们能够被用来制作 web 应用程序等。</p> -<p>Because React and ReactDOM are so often used together, React is colloquially understood as a JavaScript framework. As you read through this module, we will be working with that colloquial understanding.</p> +<p>因为 React 和 ReactDOM 被经常放在一起使用,通俗地讲,React 可以被理解为是一个 JavaScript 框架。当你通读了这个模块时,我们将使用这种口语化的理解进行工作。</p> -<p>React extends JavaScript with HTML-like syntax, known as <a href="https://reactjs.org/docs/introducing-jsx.html">JSX</a>.</p> +<p>React 用类似 HTML 的语法的 <a href="https://reactjs.org/docs/introducing-jsx.html">JSX</a> 拓展了 JavaScript。</p> <h2 id="框架为何会存在">框架为何会存在?</h2> |