An understanding of Vue’s single-file components (SFCs) and Node Package Manager (NPM) will be helpful for this article.

对Vue的单文件组件(SFC)和节点包管理器(NPM)的理解将对本文有所帮助。

A framework’s command line interface, or CLI, is the preferred method to scaffold a project. It provides a starting point of files, folders, and configuration. This scaffolding also provides a development and build process. A development process provides a way to see updates occurring as you edit your project. The build process creates the final version of files to be used in production.

框架的命令行界面(或CLI)是构建项目的首选方法。 它提供了文件,文件夹和配置的起点。 该脚手架还提供了开发和构建过程。 开发过程提供了一种查看编辑项目时发生的更新的方式。 构建过程将创建要在生产中使用的文件的最终版本。

Installing and running Vue.js (“Vue”) can be done with a script tag that points to the Vue content delivery network (CDN). No build or development process is necessary. But, if you use Vue single-file components (SFCs), you need to convert those files into something the browser can understand. The files need to be converted to Hyper-Text Markup Language (HTML), Cascading Style Sheets (CSS), and JavaScript (JS). In this case, a development and build process must be used.

可以使用指向Vue内容交付网络(CDN)的脚本标签完成Vue.js(“ Vue”)的安装和运行。 无需构建或开发过程。 但是,如果您使用Vue单文件组件(SFC),则需要将这些文件转换为浏览器可以理解的文件。 需要将文件转换为超文本标记语言(HTML),级联样式表(CSS)和JavaScript(JS)。 在这种情况下,必须使用开发和构建过程。

Instead of relying on the Vue CLI to scaffold our project and provide us with a development and build process, we will build a project from scratch. We will create our own development and build process using Webpack.

我们将不再依赖Vue CLI来搭建我们的项目并为我们提供开发和构建过程,而是从头开始构建一个项目。 我们将使用Webpack创建自己的开发和构建过程。

什么是Webpack? (What is Webpack?)

Webpack is a module bundler. It merges code from multiple files into one. Before Webpack, the user included a script tag for each JavaScript file. Although browsers are slowly supporting ES6 modules, Webpack continues to be the preferred way to build modular code.

Webpack是一个模块捆绑器。 它将来自多个文件的代码合并为一个。 在使用Webpack之前,用户为每个JavaScript文件添加了一个脚本标签。 尽管浏览器正在缓慢地支持ES6模块,但是Webpack仍然是构建模块化代码的首选方法。

Besides being a module bundler, Webpack can also transform code. For example, Webpack can take modern JavaScript (ECMAScript 6+) and convert it into ECMAScript 5. While Webpack bundles the code itself, it transforms the code with loaders and plugins. Think of loaders and plugins as add-ons for Webpack.

除了成为模块捆绑器之外,Webpack还可以转换代码。 例如,Webpack可以采用现代JavaScript(ECMAScript 6+)并将其转换为ECMAScript5。虽然Webpack 捆绑了代码本身,但它使用加载程序和插件来转换代码。 将加载程序和插件视为Webpack的附件。

Webpack和Vue (Webpack and Vue)

Single-file components allow us to build an entire component (structure, style, and function) in one file. And, most code editors provide syntax highlighting and linting for these SFCs.

单文件组件使我们可以在一个文件中构建整个组件(结构,样式和功能)。 而且,大多数代码编辑器都为这些SFC提供语法高亮和标记。

Notice the file ends with .vue. The browser doesn’t know what to do with that extension. Webpack, through the use of loaders and plugins, transforms this file into the HTML, CSS, and JS the browser can consume.

请注意,文件以.vue结尾。 浏览器不知道该扩展程序如何处理。 Webpack通过使用加载程序和插件将此文件转换为浏览器可以使用HTML,CSS和JS。

项目:使用单文件组件构建Hello World Vue应用程序。 (The Project: Build a Hello World Vue Application Using Single-File Components.)

步骤1:创建项目结构 (Step 1: Create the project structure)

The most basic Vue project will include an HTML, JavaScript, and a Vue file (the file ending in .vue). We will place these files in a folder called src. The source folder will help us separate the code we are writing from the code Webpack will eventually build.

最基本的Vue项目将包括HTML,JavaScript和Vue文件(该文件以.vue结尾)。 我们将这些文件放在名为 src文件夹中 源文件夹将帮助我们将正在编写的代码与Webpack最终生成的代码分开。

Since we will be using Webpack, we need a Webpack configuration file.

由于我们将使用Webpack,因此我们需要一个Webpack配置文件。

Additionally, we will use a compiler called Babel. Babel allows us to write ES6 code which it then compiles into ES5. Babel is one of those “add-on features” for Webpack. Babel also needs a configuration file.

此外,我们将使用称为Babel的编译器。 Babel允许我们编写ES6代码,然后将其编译为ES5。 Babel是Webpack的“附加功能”之一。 Babel还需要一个配置文件。

Finally, since we are using NPM, we will also have a node_modules folder and a package.json file. Those will be created automatically when we initialize our project as an NPM project and begin installing our dependencies.

最后,由于我们使用的是NPM,所以我们还将有一个node_modules文件夹package.json文件。 当我们将项目初始化为NPM项目并开始安装依赖项时,将自动创建它们。

To get started, create a folder called hello-world. From the command line, change to that directory and run npm init. Follow the on-screen prompts to create the project. Then, create the rest of the folders (except for node_modules) as described above. Your project structure should look like this:

首先,创建一个名为hello-world的文件夹。 在命令行中,转到该目录并运行npm init 。 按照屏幕上的提示创建项目。 然后,如上所述创建其余文件夹( node_modules除外) 。 您的项目结构应如下所示:

步骤2:安装依赖项 (Step 2: Install the dependencies)

Here is a quick rundown of the dependencies we are using:

这是我们正在使用的依赖项的简要概述:

vue: The JavaScript framework

vue :JavaScript框架

vue-loader and vue-template-compiler: Used to convert our Vue files into JavaScript.

vue-loader和vue-template-compiler :用于将我们的Vue文件转换为JavaScript。

webpack: The tool that will allow us to pass our code through some transformations and bundle it into one file.

webpack :该工具将允许我们通过一些转换传递代码并将其捆绑到一个文件中。

webpack-cli: Needed to run the Webpack commands.

webpack-cli:需要运行Webpack命令。

webpack-dev-server: Although not needed for our small project (since we won’t be making any HTTP requests), we will still “serve” our project from a development server.

webpack-dev-server :尽管我们的小型项目不需要(因为我们不会发出任何HTTP请求),但我们仍将通过开发服务器“服务”我们的项目。

babel-loader: Transform our ES6 code into ES5. (It needs help from the next two dependencies.)

babel-loader :将我们的ES6代码转换为ES5。 (它需要以下两个依赖项的帮助。)

@babel/core and @babel/preset-env: Babel by itself doesn’t do anything to your code. These two “add-ons” will allow us to transform our ES6 code into ES5 code.

@ babel / core和@ babel / preset-env :Babel本身对您的代码没有任何作用。 这两个“附加组件”将使我们能够将ES6代码转换为ES5代码。

css-loader: Takes the CSS we write in our .vue files or any CSS we might import into any of our JavaScript files and resolve the path to those files. In other words, figure out where the CSS is. This is another loader that by itself won’t do much. We need the next loader to actually do something with the CSS.

css-loader:使用我们在.vue编写CSS 文件或任何我们可能会导入任何JavaScript文件CSS并解析这些文件的路径。 换句话说,找出CSS的位置。 这是另一个本身不会做很多事情的装载机。 我们需要下一个加载器来对CSS进行实际处理。

vue-style-loader: Take the CSS we got from our css-loader and inject it into our HTML file. This will create and inject a style tag in the head of our HTML document.

vue-style-loader :从css-loader获取css-loader并将其注入HTML文件中。 这将在HTML文档的头部创建并注入样式标签。

html-webpack-plugin: Take our index.html and inject our bundled JavaScript file in the head. Then, copy this file into the dist folder.

html-webpack-plugin :以我们的index.html并将我们捆绑JavaScript文件注入头部。 然后,将此文件复制到dist 夹。

rimraf: Allows us, from the command line, to delete files. This will come in handy when we build our project multiple times. We will use this to delete any old builds.

rimraf :允许我们从命令行删除文件。 当我们多次构建项目时,这将派上用场。 我们将使用它来删除所有旧版本。

Let’s install these dependencies now. From the command line, run:

现在安装这些依赖项。 从命令行运行:

npm install vue vue-loader vue-template-compiler webpack webpack-cli webpack-dev-server babel-loader @babel/core @babel/preset-env css-loader vue-style-loader html-webpack-plugin rimraf -D

Note: The “-D” at the end marks each dependency as a development dependency in our package.json. We are bundling all dependencies in one file, so, for our small project, we have no production dependencies.

注意: 末尾的“ -D”将每个依赖项标记为我们的package.json中的开发依赖项。 我们将所有依赖项捆绑在一个文件中,因此,对于我们的小型项目,我们没有生产依赖项。

步骤3:创建文件(Webpack配置文件除外)。 (Step 3: Create the files (Except for our Webpack configuration file).)

Up to this point, nothing should look too foreign. I’ve kept each file very basic. I’ve only added minimal CSS and JS to see our workflow in action.

到目前为止,没有什么看起来太陌生。 我把每个文件都保留得很基本。 我仅添加了最少CSS和JS来查看我们的工作流程。

步骤4:指示Webpack做什么 (Step 4: Instructing Webpack what to do)

All the configuration Webpack needs access to is now present. We need to do two final things: Tell Webpack what to do and run Webpack.

Webpack需要访问的所有配置现在都已存在。 我们需要做两件事:告诉Webpack做什么并运行Webpack。

Below is the Webpack configuration file (webpack.config.js). Create this file in the projects root directory. Line-by-line we’ll discuss what is occurring.

以下是Webpack配置文件( webpack.config.js )。 在项目根目录中创建此文件。 我们将逐行讨论正在发生的事情。

Lines 1 and 2: We are importing the two plugins we use below. Notice, our loaders don’t normally need to be imported, just our plugins. And in our case, the vue-loader (which we use in line 9) also needs a plugin to work (however, Babel, for example, does not).

第1行和第2行:我们正在导入下面使用的两个插件。 请注意,通常不需要导入我们的加载器,只需导入我们的插件即可。 在我们的情况下 vue-loader (我们在第9行中使用)也需要一个插件才能工作(例如,Babel不需要)。

Line 4: We export our configuration as an object. This gives us access to it when we run the Webpack commands.

第4行:我们将配置导出为对象。 这使我们可以在运行Webpack命令时对其进行访问。

Line 5: This is our entry module. Webpack needs a place to start. It looks in our main.js file and then starts to comb through our code from that point.

第5行:这是我们的输入模块。 Webpack需要一个起点。 它会在我们的main.js文件中查找,然后从main.js开始梳理我们的代码。

Line 6 and 7: This is the module object. Here, we primarily pass in an array of rules. Each rule tells Webpack how to handle certain files. So, while Webpack uses the entry point of main.js to start combing through our code, it uses the rules to transform our code.

第6和7行:这是模块对象。 在这里,我们主要传递一系列规则。 每个规则都告诉Webpack如何处理某些文件。 所以,虽然使用的WebPack的切入点main.js开始通过我们的代码梳理,它使用规则来改变我们的代码。

Line 8 (rule): This rule instructs Webpack to use the babel-loader on any files which end with .js. Remember, Babel will transform ES6+ to ES5.

第8行(规则):此规则指示Webpack在任何以.js结尾的文件上使用babel-loader 记住,Babel会将ES6 +转换为ES5。

Line 9 (rule): This rule instructs Webpack to use vue-loader (and don’t forget the associated plugin on line 17) to transform our .vue files into JavaScript.

第9行(规则):此规则指示Webpack使用vue-loader (也请不要忘记第17行的关联插件)将.vue文件转换为JavaScript。

Line 10 (rule): Sometimes we want to pass a file through two loaders. Counterintuitively, Webpack will pass the file from right to left instead of left to right. Here we are using two loaders and saying to Webpack: “get my CSS from my Vue file or any JavaScript files(css-loader) and inject it into my HTML as a style tag (vue-style-loader).

第10行(规则):有时我们想通过两个加载器传递文件。 与直觉相反,Webpack将文件从右向左传递,而不是从左向右传递。 在这里,我们使用两个加载器,对Webpack说:“从我的Vue文件或任何JavaScript文件( css-loader )中获取我CSS,并将其作为样式标签( vue-style-loader )注入到HTML中。

Lines 11 and 12: Close out our rules array and module object.

第11和12行:关闭规则数组和模块对象。

Lines 13: Create a plugins array. Here we will add the two plugins we need.

第13行:创建一个插件数组。 在这里,我们将添加我们需要的两个插件。

Line: 14 -16 (plugin): The HtmlWebpackPlugin takes the location of our index.html file and adds our bundled JavaScript file to it via a script tag. This plugin will also copy the HTML file to our distribution folder when we build our project.

行:14 -16(插件): HtmlWebpackPlugin占据我们index.html文件的位置,并通过script标签向其中添加捆绑JavaScript文件。 在构建项目时,此插件还将HTML文件复制到我们的分发文件夹中。

Line 17 (plugin): The VueLoaderPlugin works with our vue-loader to parse our .vue files.

第17行(插件): VueLoaderPlugin与我们的vue-loader一起解析我们的.vue文件。

Line 18: Close out the plugins array.

第18行:关闭插件数组。

Line 19: Close out the Webpack object that we are exporting.

第19行:关闭我们要导出的Webpack对象。

步骤5:设置我们的package.json文件,以便我们可以运行Webpack (Step 5: Setting up our package.json file so we can run Webpack)

Our configuration is complete, now we want to see our application. Ideally, as we make changes to our application, the browser would update automatically. This is possible with webpack-dev-server.

我们的配置已完成,现在我们要查看我们的应用程序。 理想情况下,当我们对应用程序进行更改时,浏览器将自动更新。 使用webpack-dev-server可以做到这一点。

Delete the test script in our package.json file, and replace it with a script to serve our application:

删除我们的package.json文件中的test脚本,并将其替换为服务于我们的应用程序的脚本:

The name of this command is your choice. I chose to call mine serve since we will be serving our application.

您可以选择此命令的名称。 我选择致电我的serve因为我们将为我们的应用程序提供服务

From our terminal or command line, we can run npm run serve and that in turn will run webpack-dev-server --mode development .

在终端或命令行中,我们可以运行npm run serve ,然后将运行webpack-dev-server --mode development

The --mode development is what’s called a flag or option. We haven’t talked about this, but it essentially instructs Webpack that you are in development mode. We can also pass in --mode production which we will do when we build our project. These aren’t necessarily required for Webpack to work. Without these, you will get a warning message telling you to provide a mode when you run Webpack .

--mode development是所谓的标志或选项。 我们还没有讨论过,但是从本质上讲它指示Webpack您处于开发模式。 我们还可以传递--mode production ,这是我们在构建项目时将执行的--mode production Webpack不一定需要这些。 没有这些,您将收到一条警告消息,告诉您在运行Webpack时提供一种模式。

I say “necessarily required” because Webpack will minimize our code in production mode but not in development. So, don’t think those commands don’t do anything–they do.

我说“必需的”是因为Webpack将在生产模式下而不是在开发模式下最小化我们的代码。 因此,不要认为这些命令没有做任何事情,而是会做任何事情。

Let’s run npm run serve and see what happens.

让我们运行npm run serve看看会发生什么。

When we run npm run serve we get some output in our terminal. And, if everything goes well:

当我们运行npm run serve我们会在终端中得到一些输出。 而且,如果一切顺利:

And if we scroll up a bit:

如果我们向上滚动一点:

Point your browser to http://localhost:8080. You will see your Blue Hello World message in Roboto font.

将浏览器指向http://localhost:8080 。 您将看到Roboto字体的Blue Hello World消息。

Now, let’s update the project and change the message to Hello Universe. Notice that the webpage refreshes automatically. That’s great, right? Can you think of a downside?

现在,让我们更新项目并将消息更改为Hello Universe 。 请注意,网页会自动刷新。 很好,对吗? 您能想到不利之处吗?

Let’s change the application just a bit and include an input which we will bind a variable to (with v-model). We will output the variable in an <h2>tag below the input. I’ve also updated the styling section to style the message now. Our App.vue file should look like this:

让我们稍微更改一下应用程序,并包含一个输入,我们将把变量绑定到(使用v-model )。 我们将在输入下方的<h2>标记中输出变量。 我还更新了样式部分,以立即对消息进行样式设置。 我们的应用App.vue 文件应如下所示:

When we serve our application, we will have an input with a message of Hello World below it. The input is bound to the message variable, so as we type, we change the <h2> content. Go ahead, type into the input to change the <h2>content.

当我们为应用程序提供服务时,我们将在其下方输入一个带有Hello World消息的输入。 输入绑定到message变量,因此在键入时,我们更改了<h2>内容。 继续,输入内容以更改<h2>内容。

Now go back to your editor, and below the <h2>tag, add the following:

现在回到编辑器,在<h2>标记下面,添加以下内容:

<h3>Some Other Message</h3>

<h3>Some Other Message</h3>

Save your App.vue and watch what happens.

保存您的App.vue并观察会发生什么。

The h2 we just updated by typing in our input reverted back to Hello World. This is because the browser actually refreshes, and the script tag and page are loaded again. In other words, we were not able to maintain the state of our application. This may not seem like a big deal, but as you are testing your application and adding data to it, it will be frustrating if your app “resets” every time. Fortunately, Webpack offers us a solution called Hot Module Replacement.

我们刚刚通过输入输入更新的h2还原为Hello World 。 这是因为浏览器实际上会刷新,并且脚本标签和页面会再次加载。 换句话说,我们无法维护应用程序的状态。 这似乎没什么大不了,但是当您测试应用程序并向其中添加数据时,如果您的应用程序每次都“重置”,那将很令人沮丧。 幸运的是,Webpack为我们提供了一种称为“热模块更换”的解决方案。

The hot module replacement is a plugin provided by Webpack itself. Up until this point, we have not used the Webpack object itself in our configuration file. However, we will now import Webpack so we can access the plugin.

热模块替换是Webpack本身提供的插件。 到目前为止,我们还没有在配置文件中使用Webpack对象本身。 但是,我们现在将导入Webpack,以便我们可以访问插件。

In addition to the plugin, we will pass one additional option to Webpack, the devServer option. In that option, we will set hot to true. Also, we will make an (optional) update to our build workflow: We will open the browser window automatically when we run npm run serve. We do this by setting open to true which is also inside the devServer option.

除了插件之外,我们还将传递一个附加选项给Webpack devServer选项。 在该选项中,我们将hot设置为true 。 另外,我们将对构建工作流程进行(可选)更新:运行npm run serve时,我们将自动打开浏览器窗口。 我们通过在devServer选项devServer open设置为truetrue

Notice that we’ve imported Webpack so we could access the hotModuleReplacementPlugin. We’ve added that to the plugins array, and then told Webpack to use it with hot: true. We open the browser window automatically when we serve the application with open: true.

注意,我们已经导入了Webpack,因此我们可以访问hotModuleReplacementPlugin 。 我们已经将其添加到plugins数组中,然后告诉Webpack将它与hot: true一起使用。 当我们使用open: true为应用程序提供服务时,我们会自动打开浏览器窗口。

Run npm run serve:

运行npm run serve

The browser window should open, and if you open your dev tools, you should notice a slight change in the output. It now tells us hot module replacement is enabled. Let’s type in our input to change the <h2> content. Then, change theh3 tag to read: One More Message.

应该会打开浏览器窗口,并且如果您打开开发工具,则应该注意到输出中的微小变化。 现在,它告诉我们启用了热模块更换。 让我们输入内容以更改<h2>内容。 然后,将h3标签更改为: One More Message

Save your file and notice what happens.

保存文件并注意会发生什么。

The browser doesn't refresh, but our <h3>change is reflected! The message we typed in the input remains, but the h3 updates. This allows our application to keep it’s state while we edit it.

浏览器不会刷新,但是会反映出我们的<h3>更改! 我们输入的消息仍然存在,但是h3更新。 这允许我们的应用程序在编辑时保持其状态。

步骤7:建立专案 (Step 7: Building our project)

So far, we’ve served our application. But, what if we want to build our application so we can distribute it?

到目前为止,我们已经为我们的应用程序提供了服务。 但是,如果我们要构建应用程序以便可以分发它该怎么办?

If you noticed, when we serve our application, no files are created. Webpack creates a version of these files that only exist in temporary memory. If we want to distribute our Hello World app to our client, we need to build the project.

如果您注意到,在我们为我们的应用程序提供服务时,不会创建任何文件。 Webpack创建这些文件的版本,该版本仅存在于临时内存中。 如果我们想将Hello World应用程序分发给客户,则需要构建项目。

This is very simple. Just like before, we will create a script in our package.json file to tell Webpack to build our project. We will use webpack as the command instead of webpack-dev-server. We will pass in the --mode production flag as well.

这很简单。 就像以前一样,我们将在package.json文件中创建一个脚本,以告诉Webpack构建我们的项目。 我们将使用webpack代替webpack-dev-server作为命令。 我们也将传递--mode production标记。

We will also use the rimraf package first to delete any previous builds we may have. We do this simply by rimraf dist.

我们还将首先使用rimraf软件包删除我们可能拥有的任何以前的版本。 我们只是通过rimraf dist做到这一点。

dist is the folder Webpack will automatically create when it builds our project. “Dist” is short for distribution–i.e. we are “distributing” our applications code.

dist 是Webpack在构建项目时将自动创建的文件夹。 “ Dist”是分发的缩写,即我们正在“分发”我们的应用程序代码。

The rimraf dist command is telling the rimraf package to delete the dist directory. Make sure you don’t rimraf src by accident!

rimraf dist命令告诉 rimraf软件包删除dist目录。 确保您不是 rimraf src

Webpack also offers a plugin that will accomplish this cleaning process called clean-webpack-plugin. I chose dist show an alternative way.

Webpack还提供了一个名为clean-webpack-plugin的插件,可以完成此清理过程。 我选择了dist show另一种方式。

Our package.json file should look like this:

我们的package.json文件应如下所示:

There are three things to notice:

有三件事要注意:

  1. I’ve created a separate clean script so we can run it independently of our build script.

    我创建了一个单独的clean脚本,因此我们可以独立于构建脚本运行它。

  2. npm run build will call the independent clean script we’ve created.

    npm run build将调用我们创建的独立clean脚本。

  3. I have && between npm run clean and webpack. This instruction says: “run npm run clean first, then run webpack”.

    我在npm run cleanwebpack之间有&& 。 该说明说:“先运行npm run clean然后再运行webpack ”。

Let’s build the project.

让我们构建项目。

npm run build

npm run build

Webpack creates a dist directory, and our code is inside. Since our code makes no HTTP requests, we can simply open our index.html file in our browser and it will work as expected.

Webpack创建一个dist目录,我们的代码在其中。 由于我们的代码没有HTTP请求,因此我们只需在浏览器中打开index.html文件即可正常工作。

If we had code that was making HTTP requests, we would run into some cross-origin errors as we made those requests. We would need to run that project from a server for it to work.

如果我们有发出HTTP请求的代码,那么在发出这些请求时就会遇到一些跨域错误。 我们需要从服务器运行该项目才能使其工作。

Let’s examine the index.html that Webpack created in the browser and the code editor.

让我们检查一下Webpack在浏览器和代码编辑器中创建的index.html

If we open it in our editor or take a look at the source code in our dev tools you will see Webpack injected the script tag. In our editor though, you won’t see the styles because the style tag is injected dynamically at runtime with JavaScript!

如果我们在编辑器中打开它,或者在开发工具中查看源代码,您将看到Webpack注入了script标记。 但是,在我们的编辑器中,您将看不到样式,因为样式标记是在运行时使用JavaScript动态注入的!

Also, notice our development console information is no longer present. This is because we passed the --production flag to Webpack.

另外,请注意我们的开发控制台信息不再存在。 这是因为我们将--production标志传递给了Webpack。

结论 (Conclusion)

Understanding the build process behind the frameworks you use will help you to better understand the framework itself. Take some time to try to build an Angular, React or another Vue Project without the use of the respective CLIs. Or, just build a basic three-file site (index.html, styles.css, and app.js), but use Webpack to serve and build a production version.

了解所使用的框架背后的构建过程将有助于您更好地了解框架本身。 花一些时间尝试在不使用各自的CLI的情况下构建Angular,React或另一个Vue项目。 或者,仅构建一个基本的三文件站点(index.html,styles.css和app.js),但是使用Webpack来提供和构建生产版本。

Thanks for reading!

谢谢阅读!

woz

沃兹

翻译自: https://www.freecodecamp.org/news/how-to-create-a-vue-js-app-using-single-file-components-without-the-cli-7e73e5b8244f/

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. 2021--React最新面试题--

    1、React 事件绑定原理 react中的事件都是合成事件&#xff0c;不是把每一个dom的事件绑定在dom上&#xff0c;而是把事件统一绑定到document中&#xff0c;触发时通过事件冒泡到document进行触发合成事件&#xff0c;因为是合成事件&#xff0c;所以我们无法去使用e.stopPropa…...

    2024/4/12 10:16:48
  2. 世界顶级公司的前端面试都问些什么

    在过去的几年里&#xff0c;我在亚马逊和雅虎面试过许多前端工程师。在这篇文章中&#xff0c;我想分享一些技巧&#xff0c;帮助大家做好准备。 免责声明&#xff1a; 本文的目的并不是为你列出在前端面试中可能会被问到的问题&#xff0c;但是可以将其视为知识储备。 面试很…...

    2024/4/16 2:46:21
  3. angularjs jstree 示例

    本篇文章是个简单的例子&#xff0c;如果需求需要更复杂的可参考jstree 官网&#xff0c;里面详细接受有事件、方法。 jstree&#xff1a;https://www.jstree.com/ angularjs调用一般是&#xff1a; <script src"../bootstrap/js/bootstrap.min.js"></scr…...

    2024/4/12 2:05:49
  4. Vue第一天学习总结—— Vue全家桶之Vue基础(Vue概述、Vue基本使用、Vue模板语法、基础案例——选项卡、Vue常用特性、综合案例-图书管理 )

    (一) Vue概述 我使用的vue版本是v2.5.17 1. 介绍——Vue&#xff1a;渐进式JavaScript框架 声明式渲染→组件系统→客户端路由→集中式状态管理→项目构建 易用&#xff1a;熟悉HTML、CSS、JavaScript知识后&#xff0c;可快速上手Vue 灵活&#xff1a;在一个库和一套完整框…...

    2024/4/12 10:16:48
  5. AngularJs 监听单选按钮,禁止级联的下拉框编辑

    AngularJs 中&#xff0c;有一个输入的界面&#xff0c;需要先单选一个按钮&#xff0c;然后旁边的下拉框根据他选中的值&#xff0c;如果是是&#xff0c;就可以点击&#xff0c;如果是否&#xff0c;就不可以点击&#xff0c;主要是使用到ng-change的按钮改变监听函数&#x…...

    2024/4/12 10:17:24
  6. 内双肿泡眼做什么双眼皮好看

    ...

    2024/4/16 11:41:41
  7. 哪种双眼皮手术最安全不留疤

    ...

    2024/4/12 16:01:14
  8. 南昌双眼皮南昌同济TO表示

    ...

    2024/4/13 16:30:22
  9. 双眼皮埋线医院去重点南通康美

    ...

    2024/4/16 2:46:54
  10. 宁波埋线双眼皮去什么医院好吗

    ...

    2024/4/16 9:35:57
  11. 双眼皮整形美容医院哪家最好的医院哪家好

    ...

    2024/4/12 10:19:19
  12. 成都哪些地方割双眼皮好还是

    ...

    2024/4/12 14:24:14
  13. Android自动化测试实战 Java篇 主流工具 框架 脚本

    Android自动化测试实战 Java篇 主流工具 框架 脚本 后端开发: 1、2017龙果微服务架构的分布式事务解决方案 2、2017年龙果spring boot 入门实战视频教程-首套中文教程 3、51CTO Spring Boot实战与原理分析视频课程 4、ElasticSearch5视频教程 5、Elasticsearch顶尖高手系列&…...

    2024/4/18 10:50:56
  14. linux卸载rpm后如何恢复?

    一次生产过程中的小故障,公司刚来的实习生卸载了rpm包后恢复的过程如下: 首先模拟卸载rpm rpm -e --nodeps rpm [rootCentOS69: /root]# rpm -qi rpm -bash: /bin/rpm: No such file or directory由于yum依赖于rpm,所以yum也无法正常使用 yum list error: Unable to open /us…...

    2024/4/17 4:48:59
  15. vue做混合式app_Vue Cordova教程-Vue+Cordova打造跨平台可安装的混合APP视频教程(大地)...

    VueCordova打造跨平台可安装的混合APP视频教程必看说明&#xff1a;目前购买此教程送Html5CordovaIonic智能电视(TV)应用开发教程视频教程&#xff1a;购买过Ionic的同学可以直接在(Ionic仿照京东商城项目订单里面获取此教程)&#xff0c;无需重新购买此教程。没有购买过Ionic4…...

    2024/4/13 1:42:33
  16. ionic4.x仿京东 - 10.3.3.收货地址-签名验证、增加收货地址、显示收货地址

    一、增加收货地址 1、数据双向绑定 【addressadd.page.html】 【addressadd.page.ts】 2、向服务器提交新增地址数据 (1)接口信息 请求方式:post(用到CommonService...

    2024/4/12 13:36:23
  17. ionic4.x仿京东 - 7.1.商品详情-头部底部制作ion-segment - ion-footer

    一、效果图 二、准备工作 1. 新建商品详情页面 ionic g page pcontent 2. 商品详情页面加返回按钮 【pcontent.page.html】 3. 商品列表页面:点击商品跳转到商品详情页面 【productlist.page.html】 传参成功:...

    2024/4/16 5:13:01
  18. ionic4.x仿京东 - 10.3.4.收货地址-修改默认收货地址、显示默认收货地址

    一、修改默认收货地址 1、接口信息 请求方式:post地址:域名/api/changeDefaultAddress传参说明:参数说明备注uid用户 id必传sign签名验证地址是否合法id当前收获地址的 id 返回参数:参数说明备注successtrue/false是否成功message提示信息 2、写代码 【addresslist.pa…...

    2024/4/11 11:04:05
  19. ionic4.x仿京东 - 6.1.分类-请求动态数据,实现tab切换以及选中

    一、接口信息 1.一级分类 (1).地址:http://jd.itying.com/api/pcate (2).传参说明: 地址后面加上?pid=xxx就是二级分类 (3).返回参数说明: 2.二级分类 (1).地址:http://jd.itying.com/api/pcate?pid=59f1e1ada1da8b15d42234e9 二、实现一级分类、二级分类的…...

    2024/4/12 10:17:49
  20. 成都哪里做双眼皮割的好

    ...

    2024/4/12 10:18:13

最新文章

  1. 邦芒贴士:职场白领须知五种情况下千万别提加薪

    ​​专家们警告&#xff0c;在开口申请加薪之前&#xff0c;你需要先确定自己不属于下列的任何一种情况&#xff0c;否则你的申请不但收不到预期效果&#xff0c;反而会降低辛苦积累的职业身价。 1、企业拥有固定工资体系时慎提加薪 在中国&#xff0c;一些年代悠久的国有企业…...

    2024/4/18 12:41:04
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. Kafka入门到实战-第五弹

    Kafka入门到实战 Kafka常见操作官网地址Kafka概述Kafka的基础操作更新计划 Kafka常见操作 官网地址 声明: 由于操作系统, 版本更新等原因, 文章所列内容不一定100%复现, 还要以官方信息为准 https://kafka.apache.org/Kafka概述 Apache Kafka 是一个开源的分布式事件流平台&…...

    2024/4/14 21:38:34
  4. Dapr(一) 基于云原生了解Dapr

    (这期先了解Dapr&#xff0c;之后在推出如何搭建Dapr&#xff0c;以及如何使用。Dapr(二) 分布式应用运行时搭建及服务调用--Dapr(二) 分布式应用运行时搭建及服务调用-CSDN博客) 目录 引言&#xff1a; Service Mesh定义 Service Mesh解决的痛点 Istio介绍 Service Mes…...

    2024/4/16 23:44:50
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/4/18 0:33:31
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/4/17 20:29:59
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/18 9:45:31
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/4/17 2:33:17
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/17 7:50:46
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/18 3:56:01
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/18 3:56:04
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/18 3:55:30
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/18 3:55:54
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/4/18 3:55:45
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/17 21:50:30
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/15 13:53:08
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/15 9:16:52
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/18 9:24:29
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/4/18 3:56:18
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/4/18 3:55:57
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/18 3:55:50
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/15 23:28:22
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/4/18 3:56:20
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/18 3:56:11
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57