首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    武汉腾讯前端一面

    1、自我介绍 2、项目难点及解决方案, 3、Vue双向数据绑定原理, 4、diff算法, 5、递归实现方式, 6、深浅拷贝,object.assign, 7、跨域原因及解决方式,你公司项目是怎么解决的, 8、webpack, 9、react路由原理, 10、react合成事件, 11、浏览器输入url到渲染的过程, 12、浏览器渲染机制 13、箭头函数和普通函数区别, 14、this指向,箭头函数this指向 15、304状态码 16、new操作符实现原理 17、Web安全相关知识知道多少 18、Xss ddos防范 19、前端项目优化方式 20、怎么提高前端首屏加载速度,CDN原理 21、浏览器缓存方式,http缓存 22、node线程 23、node能做什么,哪些方面 24、有没有用过node相关技术栈,或者你用node做了什么 25、Vue2的双向数据绑定vue3的区别,做了哪些优化 26、v2和v3的区别,增加了哪些方法,写起来有什么不同 27、vue和react的区别 28、react的refs,setState 29、对称加密算法和非对称加密算法 30、服务器相关知识 31、nginx反向代理 32、你提到了spring,有没有去了解过,spring和springboot的关系,springboot的优点是什么 33、你经常用的react是哪个版本,我们是17往上 34、你有什么想问的或者想了解的吗

    06

    React极简教程: Hello,World!React简史React安装Hello,World

    A programming paradigm is a fundamental style of computer programming. There are four main paradigms: imperative, declarative, functional (which is considered a subset of the declarative paradigm) and object-oriented. Declarative programming : is a programming paradigm that expresses the logic of a computation(What do) without describing its control flow(How do). Some well-known examples of declarative domain specific languages (DSLs) include CSS, regular expressions, and a subset of SQL (SELECT queries, for example) Many markup languages such as HTML, MXML, XAML, XSLT… are often declarative. The declarative programming try to blur the distinction between a program as a set of instructions and a program as an assertion about the desired answer. Imperative programming : is a programming paradigm that describes computation in terms of statements that change a program state. The declarative programs can be dually viewed as programming commands or mathematical assertions. Functional programming : is a programming paradigm that treats computation as the evaluation of mathematical functions and avoids state and mutable data. It emphasizes the application of functions, in contrast to the imperative programming style, which emphasizes changes in state. In a pure functional language, such as Haskell, all functions are without side effects, and state changes are only represented as functions that transform the state. ( 出处:维基百科)

    01

    前端本地化部署

    现在成熟的前端团队里面都有自己的内部构建平台,我司云长便是我们 CI/CD 的提效利器。我先来简单介绍下我司的云长,此云长非彼云长,云长主要做的是:获取部署的项目,分支,环境基本信息后开始拉取代码,安装依赖,打包,并且将项目的一些资源静态文件上传 CDN,再将生成的代码再打包成镜像文件,然后将这份镜像上传到镜像仓库后,最后调用 K8S 的镜像部署服务,进行镜像按环境的部署,这就是我们云长做的事情。如果想从零开始搭建一个自己团队的部署平台可以看下我们往期文章 如何搭建适合自己团队的构建部署平台,本期我们只是针对云长中静态资源本地化的功能做细致阐述。

    02
    领券