2019独角兽企业重金招聘Python工程师标准>>> hot3.png

build.js 已经写好,直接运行命令,然后看报错哪个没引入,然后直接引入。再运行。

http://www.zhangxinxu.com/wordpress/2013/01/uglifyjs-compress-js/ 

压缩

uglifyjs inet.js -m -o inet.min.js

命令:node r.js  -o build.js

https://github.com/requirejs/r.js 

http://requirejs.org/docs/optimization.html 优化文档

/** This is an example build file that demonstrates how to use the build system for* require.js.** THIS BUILD FILE WILL NOT WORK. It is referencing paths that probably* do not exist on your machine. Just use it as a guide.*此构建文件不起作用。它可能引用了路径不存在于您的机器上。只是用它作为指导。**/({//The top level directory that contains your app. If this option is used//then it assumed your scripts are in a subdirectory under this path.//This option is not required. If it is not specified, then baseUrl//below is the anchor point for finding things. If this option is specified,//then all the files from the app directory will be copied to the dir://output area, and baseUrl will assume to be a relative path under//this directory.appDir: "some/path/",//By default, all modules are located relative to this path. If baseUrl//is not explicitly set, then all modules are loaded relative to//the directory that holds the build file. If appDir is set, then//baseUrl should be specified as relative to the appDir.baseUrl: "./",//By default all the configuration for optimization happens from the command//line or by properties in the config file, and configuration that was//passed to requirejs as part of the app's runtime "main" JS file is *not*//considered. However, if you prefer the "main" JS file configuration//to be read for the build so that you do not have to duplicate the values//in a separate configuration, set this property to the location of that//main JS file. The first requirejs({}), require({}), requirejs.config({}),//or require.config({}) call found in that file will be used.//As of 2.1.10, mainConfigFile can be an array of values, with the last//value's config take precedence over previous values in the array.mainConfigFile: '../some/path/to/main.js',//Set paths for modules. If relative paths, set relative to baseUrl above.//If a special value of "empty:" is used for the path value, then that//acts like mapping the path to an empty file. It allows the optimizer to//resolve the dependency to path, but then does not include it in the output.//Useful to map module names that are to resources on a CDN or other//http: URL when running in the browser and during an optimization that//file should be skipped because it has no dependencies.//e.g. if you wish to include `jquery` and `angularjs` from public CDNs,//paths: { "jquery": "empty:", "angular": "empty:" }paths: {"foo.bar": "../scripts/foo/bar","baz": "../another/path/baz"},//Sets up a map of module IDs to other module IDs. For more details, see//the http://requirejs.org/docs/api.html#config-map docs.map: {},//Configure CommonJS packages. See http://requirejs.org/docs/api.html#packages//for more information.packages: [],//The directory path to save the output. If not specified, then//the path will default to be a directory called "build" as a sibling//to the build file. All relative paths are relative to the build file.dir: "../some/path",//As of RequireJS 2.0.2, the dir above will be deleted before the//build starts again. If you have a big build and are not doing//source transforms with onBuildRead/onBuildWrite, then you can//set keepBuildDir to true to keep the previous dir. This allows for//faster rebuilds, but it could lead to unexpected errors if the//built code is transformed in some way.keepBuildDir: false,//If shim config is used in the app during runtime, duplicate the config//here. Necessary if shim config is used, so that the shim's dependencies//are included in the build. Using "mainConfigFile" is a better way to//pass this information though, so that it is only listed in one place.//However, if mainConfigFile is not an option, the shim config can be//inlined in the build config.shim: {},//As of 2.1.11, shimmed dependencies can be wrapped in a define() wrapper//to help when intermediate dependencies are AMD have dependencies of their//own. The canonical example is a project using Backbone, which depends on//jQuery and Underscore. Shimmed dependencies that want Backbone available//immediately will not see it in a build, since AMD compatible versions of//Backbone will not execute the define() function until dependencies are//ready. By wrapping those shimmed dependencies, this can be avoided, but//it could introduce other errors if those shimmed dependencies use the//global scope in weird ways, so it is not the default behavior to wrap.//To use shim wrapping skipModuleInsertion needs to be false.//More notes in http://requirejs.org/docs/api.html#config-shimwrapShim: false,//Used to inline i18n resources into the built file. If no locale//is specified, i18n resources will not be inlined. Only one locale//can be inlined for a build. Root bundles referenced by a build layer//will be included in a build layer regardless of locale being set.locale: "en-us",//How to optimize (minify) all the JS files in the build output directory.如何优化(缩小)生成输出目录中的所有JS文件。//Right now only the following values are supported:现在只支持以下值://- "uglify": (default) uses UglifyJS to minify the code. Before version//2.2, the uglify version was a 1.3.x release. With r.js 2.2, it is now//a 2.x uglify release. Only supports ES5 syntax. For ES 2015 or later, use//the "none" option instead.//- "uglify2": in version 2.1.2+. Uses UglifyJS2. As of r.js 2.2, this//is just an alias for "uglify" now that 2.2 just uses uglify 2.x.//- "closure": uses Google's Closure Compiler in simple optimization//mode to minify the code. Only available if running the optimizer using//Java.//- "closure.keepLines": Same as closure option, but keeps line returns//in the minified files.//- "none": no minification will be done. Use this setting if you are using//ES 2015 or later syntax in your files, since the bundled UglifyJS only//understands ES5 and earlier syntax. For ES2015 code, run a compliant// minifier as a separate step after running r.js.optimize: "uglify",//Introduced in 2.1.2: If using "dir" for an output directory, normally the//optimize setting is used to optimize the build bundles (the "modules"//section of the config) and any other JS file in the directory. However, if//the non-build bundle JS files will not be loaded after a build, you can//skip the optimization of those files, to speed up builds. Set this value//to true if you want to skip optimizing those other non-build bundle JS//files.skipDirOptimize: false,//Introduced in 2.1.2 and considered experimental.//If the minifier specified in the "optimize" option supports generating//source maps for the minified code, then generate them. The source maps//generated only translate minified JS to non-minified JS, it does not do//anything magical for translating minified JS to transpiled source code.//Currently only optimize: "uglify2" is supported when running in node or//rhino, and if running in rhino, "closure" with a closure compiler jar//build after r1592 (20111114 release).//The source files will show up in a browser developer tool that supports//source maps as ".js.src" files.generateSourceMaps: false,//Introduced in 2.1.1: If a full directory optimization ("dir" is used), and//optimize is not "none", and skipDirOptimize is false, then normally all JS//files in the directory will be minified, and this value is automatically//set to "all". For JS files to properly work after a minification, the//optimizer will parse for define() calls and insert any dependency arrays//that are missing. However, this can be a bit slow if there are many/larger//JS files. So this transport normalization is not done (automatically set//to "skip") if optimize is set to "none". Cases where you may want to//manually set this value://1) Optimizing later: if you plan on minifying the non-build bundle JS files//after the optimizer runs (so not as part of running the optimizer), then//you should explicitly this value to "all".//2) Optimizing, but not dynamically loading later: you want to do a full//project optimization, but do not plan on dynamically loading non-build//bundle JS files later. In this case, the normalization just slows down//builds, so you can explicitly set this value to "skip".//Finally, all build bundles (specified in the "modules" or "out" setting)//automatically get normalization, so this setting does not apply to those//files.normalizeDirDefines: "skip",//If using UglifyJS for script optimization, these config options can be//used to pass configuration values to UglifyJS.//In r.js 2.2, this is now just uglify2, so see the 'uglify2' section below//for example options. For r.js pre-2.2, this was for setting uglify 1.3.x//options.uglify: {},//If using UglifyJS2 for script optimization, these config options can be//used to pass configuration values to UglifyJS2. As of r.js 2.2, UglifyJS2//is the only uglify option, so the config key can just be 'uglify' for//r.js 2.2+.//For possible `output` values see://https://github.com/mishoo/UglifyJS2#beautifier-options//For possible `compress` values see://https://github.com/mishoo/UglifyJS2#compressor-optionsuglify2: {//Example of a specialized config. If you are fine//with the default options, no need to specify//any of these properties.output: {beautify: true},compress: {//压缩sequences: false,global_defs: {DEBUG: false}},warnings: true,mangle: false},//If using Closure Compiler for script optimization, these config options//can be used to configure Closure Compiler. See the documentation for//Closure compiler for more information.closure: {CompilerOptions: {},CompilationLevel: 'SIMPLE_OPTIMIZATIONS',loggingLevel: 'WARNING',externExportsPath: './extern.js'},//Allow CSS optimizations. Allowed values://- "standard": @import inlining and removal of comments, unnecessary//whitespace and line returns.//Removing line returns may have problems in IE, depending on the type//of CSS.//- "standard.keepLines": like "standard" but keeps line returns.//- "none": skip CSS optimizations.//- "standard.keepComments": keeps the file comments, but removes line//returns.  (r.js 1.0.8+)//- "standard.keepComments.keepLines": keeps the file comments and line//returns. (r.js 1.0.8+)//- "standard.keepWhitespace": like "standard" but keeps unnecessary whitespace.optimizeCss: "standard.keepLines.keepWhitespace",//If optimizeCss is in use, a list of files to ignore for the @import//inlining. The value of this option should be a string of comma separated//CSS file names to ignore (like 'a.css,b.css'. The file names should match//whatever strings are used in the @import calls.cssImportIgnore: null,//cssIn is typically used as a command line option. It can be used//along with out to optimize a single CSS file.cssIn: "path/to/main.css",out: "path/to/css-optimized.css",//If "out" is not in the same directory as "cssIn", and there is a relative//url() in the cssIn file, use this to set a prefix URL to use. Only set it//if you find a problem with incorrect relative URLs after optimization.cssPrefix: "",//Inlines the text for any text! dependencies, to avoid the separate//async XMLHttpRequest calls to load those dependencies.inlineText: true,//Allow "use strict"; be included in the RequireJS files.//Default is false because there are not many browsers that can properly//process and give errors on code for ES5 strict mode,//and there is a lot of legacy code that will not work in strict mode.useStrict: false,//Specify build pragmas. If the source files contain comments like so://>>excludeStart("fooExclude", pragmas.fooExclude);//>>excludeEnd("fooExclude");//Then the comments that start with //>> are the build pragmas.//excludeStart/excludeEnd and includeStart/includeEnd work, and the//the pragmas value to the includeStart or excludeStart lines//is evaluated to see if the code between the Start and End pragma//lines should be included or excluded. If you have a choice to use//"has" code or pragmas, use "has" code instead. Pragmas are harder//to read, but they can be a bit more flexible on code removal vs.//has-based code, which must follow JavaScript language rules.//Pragmas also remove code in non-minified source, where has branch//trimming is only done if the code is minified via UglifyJS or//Closure Compiler.pragmas: {fooExclude: true},//Same as "pragmas", but only applied once during the file save phase//of an optimization. "pragmas" are applied both during the dependency//mapping and file saving phases on an optimization. Some pragmas//should not be processed during the dependency mapping phase of an//operation, such as the pragma in the CoffeeScript loader plugin,//which wants the CoffeeScript compiler during the dependency mapping//phase, but once files are saved as plain JavaScript, the CoffeeScript//compiler is no longer needed. In that case, pragmasOnSave would be used//to exclude the compiler code during the save phase.pragmasOnSave: {//Just an exampleexcludeCoffeeScript: true},//Allows trimming of code branches that use has.js-based feature detection:允许使用基于Has.JS的特征检测对代码分支进行修剪://https://github.com/phiggins42/has.js//The code branch trimming only happens if minification with UglifyJS or//Closure Compiler is done. For more information, see://http://requirejs.org/docs/optimization.html#hasjs//简单来说就是在这设置变量 确定 代码中一些设置好的分支是否可以使用//if (has("someThing")) {use native someThing//} else {//    //do some workaround//}////if (true) {//    //use native someThing//} else {//    //do some workaround//}has: {'function-bind': true,'string-trim': false},//Similar to pragmasOnSave, but for has tests -- only applied during the//file save phase of optimization, where "has" is applied to both//dependency mapping and file save phases.hasOnSave: {'function-bind': true,'string-trim': false},//Allows namespacing requirejs, require and define calls to a new name.//This allows stronger assurances of getting a module space that will//not interfere with others using a define/require AMD-based module//system. The example below will rename define() calls to foo.define().//See http://requirejs.org/docs/faq-advanced.html#rename for a more//complete example.namespace: 'foo',//Skip processing for pragmas.skipPragmas: false,//If skipModuleInsertion is false, then files that do not use define()//to define modules will get a define() placeholder inserted for them.//Also, require.pause/resume calls will be inserted.//Set it to true to avoid this. This is useful if you are building code that//does not use require() in the built project or in the JS files, but you//still want to use the optimization tool from RequireJS to concatenate modules//together.skipModuleInsertion: false,//Specify modules to stub out in the optimized file. The optimizer will//use the source version of these modules for dependency tracing and for//plugin use, but when writing the text into an optimized bundle, these//modules will get the following text instead://If the module is used as a plugin://    define({load: function(id){throw new Error("Dynamic load not allowed: " + id);}});//If just a plain module://    define({});//This is useful particularly for plugins that inline all their resources//and use the default module resolution behavior (do *not* implement the//normalize() method). In those cases, an AMD loader just needs to know//that the module has a definition. These small stubs can be used instead of//including the full source for a plugin.stubModules: ['text', 'bar'],//If it is not a one file optimization, scan through all .js files in the//output directory for any plugin resource dependencies, and if the plugin//supports optimizing them as separate files, optimize them. Can be a//slower optimization. Only use if there are some plugins that use things//like XMLHttpRequest that do not work across domains, but the built code//will be placed on another domain.optimizeAllPluginResources: false,//Finds require() dependencies inside a require() or define call. By default//this value is false, because those resources should be considered dynamic/runtime//calls. However, for some optimization scenarios, it is desirable to//include them in the build.//Introduced in 1.0.3. Previous versions incorrectly found the nested calls//by default.findNestedDependencies: false,//If set to true, any files that were combined into a build bundle will be//removed from the output folder.removeCombined: false,//List the modules that will be optimized. All their immediate and deep//dependencies will be included in the module's file when the build is//done. If that module or any of its dependencies includes i18n bundles,//only the root bundles will be included unless the locale: section is set above.modules: [//Just specifying a module name means that module will be converted into//a built file that contains all of its dependencies. If that module or any//of its dependencies includes i18n bundles, they may not be included in the//built file unless the locale: section is set above.{name: "foo/bar/bop",//create: true can be used to create the module layer at the given//name, if it does not already exist in the source location. If//there is a module at the source location with this name, then//create: true is superfluous.create: true,//For build profiles that contain more than one modules entry,//allow overrides for the properties that set for the whole build,//for example a different set of pragmas for this module.//The override's value is an object that can//contain any of the other build options in this file.override: {pragmas: {fooExclude: true}}},//This module entry combines all the dependencies of foo/bar/bop and foo/bar/bee//and any of their dependencies into one file.{name: "foo/bar/bop",include: ["foo/bar/bee"]},//This module entry combines all the dependencies of foo/bar/bip into one file,//but excludes foo/bar/bop and its dependencies from the built file. If you want//to exclude a module that is also another module being optimized, it is more//efficient if you define that module optimization entry before using it//in an exclude array.{name: "foo/bar/bip",exclude: ["foo/bar/bop"]},//This module entry shows how to specify a specific module be excluded//from the built module file. excludeShallow means just exclude that//specific module, but if that module has nested dependencies that are//part of the built file, keep them in there. This is useful during//development when you want to have a fast bundled set of modules, but//just develop/debug one or two modules at a time.{name: "foo/bar/bin",excludeShallow: ["foo/bar/bot"]},//This module entry shows the use insertRequire (first available in 2.0):{name: "foo/baz",insertRequire: ["foo/baz"]}],//If the target module only calls define and does not call require() at the//top level, and this build output is used with an AMD shim loader like//almond, where the data-main script in the HTML page is replaced with just//a script to the built file, if there is no top-level require, no modules//will execute. specify insertRequire to have a require([]) call placed at//the end of the file to trigger the execution of modules. More detail at//https://github.com/requirejs/almond//Note that insertRequire does not affect or add to the modules that are//built into the build bundle. It just adds a require([]) call to the end//of the built file for use during the runtime execution of the built code.insertRequire: ['foo/bar/bop'],//If you only intend to optimize a module (and its dependencies), with//a single file as the output, you can specify the module options inline,//instead of using the 'modules' section above. 'exclude',//'excludeShallow', 'include' and 'insertRequire' are all allowed as siblings//to name. The name of the optimized file is specified by 'out'.name: "foo/bar/bop",include: ["foo/bar/bee"],insertRequire: ['foo/bar/bop'],out: "path/to/optimized-file.js",//An alternative to "include". Normally only used in a requirejs.config()//call for a module used for mainConfigFile, since requirejs will read//"deps" during runtime to do the equivalent of require(deps) to kick//off some module loading.deps: ["foo/bar/bee"],//In RequireJS 2.0, "out" can be a function. For single JS file//optimizations that are generated by calling requirejs.optimize(),//using an out function means the optimized contents are not written to//a file on disk, but instead pass to the out function:out: function (text, sourceMapText) {//Do what you want with the optimized text here.//Starting in 2.1.10, if generateSourceMaps was set to true//and optimize: 'uglify2' was used ('uglify' in r.js 2.2+), then the//second argument to this function, sourceMapText, will be the text of//the source map.},//In 2.0.12+: by setting "out" to "stdout", the optimized output is written//to STDOUT. This can be useful for integrating r.js with other commandline//tools. In order to avoid additional output "logLevel: 4" should also be used.out: "stdout",//Wrap any build bundle in a start and end text specified by wrap.//Use this to encapsulate the module code so that define/require are//not globals. The end text can expose some globals from your file,//making it easy to create stand-alone libraries that do not mandate//the end user use requirejs.wrap: {start: "(function() {",end: "}());"},//Another way to use wrap, but uses default wrapping of://(function() { + content + }());wrap: true,//Another way to use wrap, but uses file paths. This makes it easier//to have the start text contain license information and the end text//to contain the global variable exports, like//window.myGlobal = requirejs('myModule');//File paths are relative to the build file, or if running a commmand//line build, the current directory.wrap: {startFile: "parts/start.frag",endFile: "parts/end.frag"},//As of r.js 2.1.0, startFile and endFile can be arrays of files, and//they will all be loaded and inserted at the start or end, respectively,//of the build bundle.wrap: {startFile: ["parts/startOne.frag", "parts/startTwo.frag"],endFile: ["parts/endOne.frag", "parts/endTwo.frag"]},//When the optimizer copies files from the source location to the//destination directory, it will skip directories and files that start//with a ".". If you want to copy .directories or certain .files, for//instance if you keep some packages in a .packages directory, or copy//over .htaccess files, you can set this to null. If you want to change//the exclusion rules, change it to a different regexp. If the regexp//matches, it means the directory will be excluded. This used to be//called dirExclusionRegExp before the 1.0.2 release.//As of 1.0.3, this value can also be a string that is converted to a//RegExp via new RegExp().fileExclusionRegExp: /^\./,//By default, comments that have a license in them are preserved in the//output when a minifier is used in the "optimize" option.//However, for a larger built files there could be a lot of//comment files that may be better served by having a smaller comment//at the top of the file that points to the list of all the licenses.//This option will turn off the auto-preservation, but you will need//work out how best to surface the license information.//NOTE: As of 2.1.7, if using xpcshell to run the optimizer, it cannot//parse out comments since its native Reflect parser is used, and does//not have the same comments option support as esprima.preserveLicenseComments: true,//Sets the logging level. It is a number. If you want "silent" running,//set logLevel to 4. From the logger.js file://TRACE: 0,//INFO: 1,//WARN: 2,//ERROR: 3,//SILENT: 4//Default is 0.logLevel: 0,//Introduced in 2.1.3: Some situations do not throw and stop the optimizer//when an error occurs. However, you may want to have the optimizer stop//on certain kinds of errors and you can configure those situations via//this optionthrowWhen: {//If there is an error calling the minifier for some JavaScript,//instead of just skipping that file throw an error.optimize: true},//A function that if defined will be called for every file read in the//build that is done to trace JS dependencies. This allows transforms of//the content.onBuildRead: function (moduleName, path, contents) {//Always return a value.//This is just a contrived example.return contents.replace(/foo/g, 'bar');},//A function that will be called for every write to an optimized bundle//of modules. This allows transforms of the content before serialization.onBuildWrite: function (moduleName, path, contents) {//Always return a value.//This is just a contrived example.return contents.replace(/bar/g, 'foo');},//A function that is called for each JS module bundle that has been//completed. This function is called after all module bundles have//completed, but it is called for each bundle. A module bundle is a//"modules" entry or if just a single file JS optimization, the//optimized JS file.//Introduced in r.js version 2.1.6onModuleBundleComplete: function (data) {/*data.name: the bundle name.data.path: the bundle path relative to the output directory.data.included: an array of items included in the build bundle.If a file path, it is relative to the output directory. Loaderplugin IDs are also included in this array, but dependingon the plugin, may or may not have something inlined in themodule bundle.*/},//Introduced in 2.1.3: Seed raw text contents for the listed module IDs.//These text contents will be used instead of doing a file IO call for//those modules. Useful if some module ID contents are dynamically//based on user input, which is common in web build tools.rawText: {'some/id': 'define(["another/id"], function () {});'},//Introduced in 2.0.2: if set to true, then the optimizer will add a//define(require, exports, module) {}); wrapper around any file that seems//to use commonjs/node module syntax (require, exports) without already//calling define(). This is useful to reuse modules that came from//or are loadable in an AMD loader that can load commonjs style modules//in development as well as AMD modules, but need to have a built form//that is only AMD. Note that this does *not* enable different module//ID-to-file path logic, all the modules still have to be found using the//requirejs-style configuration, it does not use node's node_modules nested//path lookups.cjsTranslate: true,//Introduced in 2.0.2: a bit experimental.//Each script in the build bundle will be turned into//a JavaScript string with a //# sourceURL comment, and then wrapped in an//eval call. This allows some browsers to see each evaled script as a//separate script in the script debugger even though they are all combined//in the same file. Some important limitations://1) Do not use in IE if conditional comments are turned on, it will cause//errors://http://en.wikipedia.org/wiki/Conditional_comment#Conditional_comments_in_JScript//2) It is only useful in optimize: 'none' scenarios. The goal is to allow//easier built bundle debugging, which goes against minification desires.useSourceUrl: true,//Defines the loading time for modules. Depending on the complexity of the//dependencies and the size of the involved libraries, increasing the wait//interval may be required. Default is 7 seconds. Setting the value to 0//disables the waiting interval.waitSeconds: 7,//Introduced in 2.1.9: normally r.js inserts a semicolon at the end of a//file if there is not already one present, to avoid issues with//concatenated files and automatic semicolon insertion  (ASI) rules for//JavaScript. It is a very blunt fix that is safe to do, but if you want to//lint the build output, depending on the linter rules, it may not like it.//Setting this option to true skips this insertion. However, by doing this,//you take responsibility for making sure your concatenated code works with//JavaScript's ASI rules, and that you use a minifier that understands when//to insert semicolons to avoid ASI pitfalls.skipSemiColonInsertion: false,//Introduced in 2.1.10: if set to true, will not strip amdefine use://https://github.com/requirejs/amdefine//Normally you should not need to set this. It is only a concern if using//a built .js file from some other source, that may have included amdefine//in the built input. If you get a build error like//"undefined is not a function" and the file that generated the error//references amdefine, then set this to true.keepAmdefine: false,//Introduced in 2.1.11. As part of fixing a bug to prevent possible//overwrites of source code, https://github.com/jrburke/r.js/issues/444,//it prevented some cases where generated source is used for a build, and//it was OK to overwrite content in this source area as it was generated//from another source area, and not allowing source overwrites meant taking//another file copy hit. By setting this to true, it allows this sort of//source code overwriting. However, use at your own risk, and be sure you//have your configuration set correctly. For example, you may want to//set "keepBuildDir" to true.allowSourceOverwrites: false,//Introduced in 2.2.0. Path to file to write out bundles config//(http://requirejs.org/docs/api.html#config-bundles) found in the module//layers built by the optimizer. The path is relative to the "dir" config's//path. Only applies to full project optimization://http://requirejs.org/docs/optimization.html#wholeproject//Only use if the optimized layers are grouped more intricately then just//a simple optimization of main app entry points. The file path specified//should be to one that has the top level requirejs.config() call that sets//up the loader. If using "mainConfigFile", then this path likely should be//the path to that file where it is placed in the "dir" output directory.bundlesConfigOutFile: 'some/path/to/main.js',//Introduced in 2.2.0. Default is true for compatibility with older//releases. If set to false, r.js will not write a build.txt file in the//"dir" directory when doing a full project optimization.writeBuildTxt: true
})

 

转载于:https://my.oschina.net/swmhxhs/blog/1808261

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

相关文章

  1. 疤痕体质可以割双眼皮吗

    ...

    2024/4/20 6:37:43
  2. Require.js的基本用法详解

    一:什么是require.js ①:require.js是一个js脚本加载器,它遵循AMD(Asynchronous Module Definition)规范,实现js脚本的异步加载,不阻塞页面的渲染和其后的脚本的执行,并提供了在加载完成之后的执行相应回调函数的功能&…...

    2024/4/21 6:35:51
  3. require.js

    一:什么是require.js ①:require.js是一个js脚本加载器,它遵循AMD(Asynchronous Module Definition)规范,实现js脚本的异步加载,不阻塞页面的渲染和其后的脚本的执行,并提供了在加载完成之后的执行相应回调函数的功能&…...

    2024/4/21 6:35:50
  4. 双眼皮贴闭眼

    ...

    2024/4/21 6:35:50
  5. 前端知识点总结---面试专用

    1.关于基础css html js部分 1.1基本算法 1&#xff09;快速排序 时间复杂度 nlogn function quickSort(arr){if (arr.length<1){return arr;}var pivotIndex 0,pivort arr.splice(pivortIndex, 1)[0];var left [],right [];for (var i 1, length arr.length; i < l…...

    2024/4/20 7:53:12
  6. Web前端代码构建优化

    前言 本次所做的构建针对于iVMS-5200 Professional 车载 1.0项目的前端工程。在现在化Web开发情况下&#xff0c;越来越注重用户体验&#xff0c;具体包括网站的访问速度&#xff0c;页面的自适应&#xff0c;页面操作的流畅度。如何做到更快&#xff0c;对前端开发人员尤为重…...

    2024/5/3 1:11:31
  7. Keil : Error-Flash Download failed Cortex-M4错误解决方案整理(J-Flash擦除下载教程)

    Keil : Error-Flash Download failed Cortex-M4错误解决方案整理在开发 nRF51822/nRF52832/nRF52840时候出现如下如下问题:问题: Keil电子下载时候出现 Error: Flash Download failed - "Cortex-M4"的错误,如下图根据官方教程解释如下,还是发现不容易解决,另外结…...

    2024/4/21 6:35:46
  8. require.js的好处以及用法(三)

    require.config({    urlArgs: "v" new Date().getTime(),baseUrl: "./js",paths: {      jquery1:["//cdn.bootcss.com/jquery/1.11.1/jquery","lib/jquery-1.11.1"],//数组&#xff0c;如果前面没有的话就加载后面的。jq…...

    2024/4/21 6:35:45
  9. Vue computed以及watch简单实现

    Vue computed以及watch简单实现Vue computed以及watch简单实现需求&#xff0c;实际应用场景说明结果展示代码中一些对象属性的概念解释上原理图描述一下响应式过程属性响应式初始化Dep与Watcher在响应式初始化的作用计算属性监听属性最后附上完整html可执行代码Vue computed以…...

    2024/5/3 4:51:02
  10. 双眼皮发青肿

    ...

    2024/4/21 6:35:43
  11. 前端模块化小总结—commonJs,AMD,CMD, ES6 的Module

    随着前端快速发展&#xff0c;需要使用javascript处理越来越多的事情&#xff0c;不在局限页面的交互&#xff0c;项目的需求越来越多&#xff0c;更多的逻辑需要在前端完成&#xff0c;这时需要一种新的模式 --模块化编程 模块化的理解&#xff1a;模块化是一种处理复杂系统分…...

    2024/4/21 6:35:42
  12. 合肥105整容上睑下垂做双眼皮怎么割

    ...

    2024/4/21 6:35:42
  13. 前端工程师必备:前端的模块化

    模块化的理解 什么是模块&#xff1f; 将一个复杂的程序依据一定的规则(规范)封装成几个块(文件), 并进行组合在一起&#xff1b;块的内部数据/实现是私有的, 只是向外部暴露一些接口(方法)与外部其它模块通信&#xff1b;一个模块的组成 数据--->内部的属性&#xff1b;操作…...

    2024/4/22 1:19:02
  14. RequireJS

    <script typetext/javascript src../scripts/lib/require.js data-main../scripts/main.js></script>首页index.html只需要引入requireJs库文件&#xff0c;并且指明入口函数main.js(data-main),它一般用来对requirejs进行配置&#xff0c;main.js内容如下:main.js…...

    2024/4/21 6:35:39
  15. 许昌哪里做双眼皮好

    ...

    2024/4/20 19:04:33
  16. angularjs ajax分页,angularJS插件:ngInfiniteScroll无限滚动加载数据(自动分页)

    无限滚动(Infinite Scroll)也称为自动分页、滚动分页和无限分页。常用在图片、文章或其它列表形式的网页中&#xff0c;用来在滚动网页到页面底部的时候自动加载下一页的内容。这种形式最早由twitter使用&#xff0c;后来必应图片搜索、谷歌图片搜索、google reader等纷纷采用了…...

    2024/4/20 19:04:32
  17. 品优购分页显示品牌

    效果图 品牌列表分页的实现 3.1需求分析 在品牌管理下方放置分页栏&#xff0c;实现分页功能 3.2后端代码 3.2.1 分页结果封装实体 在pinyougou-pojo工程中创建entity包&#xff0c;用于存放通用实体类&#xff0c;创建类PageResult package com.pinyougou.entity;import…...

    2024/4/20 19:04:30
  18. 菜鸟requireJS教程---2、基本知识

    菜鸟requireJS教程---2、基本知识 一、总结 一句话总结&#xff1a; 1、requireJS中的api就define&#xff08;比如定义自己的函数&#xff09;和require 2、requireJS使用的话就是配置require.config&#xff08;main.js中&#xff09;和调用&#xff1a;require([jquery, ang…...

    2024/4/20 19:04:29
  19. 李久恒深圳做双眼皮好价格

    ...

    2024/4/21 6:35:39
  20. angularAMD快速入门

    ngularAMD是作者 marcoslin 使用 RequireJS &#xff0b; AngularJS开发的前端mvvm框架,因此你可以使用它快速创建一款Web App.他特别适合快速开发SPA应用&#xff0c;适当的和更简单的方式。 我们整合AngularJS和RequireJS不应该是复杂的&#xff0c;它不是angularAMD。在行动…...

    2024/4/21 6:35:43

最新文章

  1. 第一课 自动驾驶概述

    1. contents 2. 什么是无人驾驶/自动驾驶 3 智慧出行大智慧 4. 无人驾驶的发展历程...

    2024/5/3 6:09:23
  2. 梯度消失和梯度爆炸的一些处理方法

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

    2024/3/20 10:50:27
  3. app上架-您的应用存在最近任务列表隐藏风险活动的行为,不符合华为应用市场审核标准。

    上架提示 您的应用存在最近任务列表隐藏风险活动的行为&#xff0c;不符合华为应用市场审核标准。 修改建议&#xff1a;请参考测试结果进行修改。 请参考《审核指南》第2.19相关审核要求&#xff1a;https://developer.huawei.com/consumer/cn/doc/app/50104-02 造成原因 …...

    2024/5/2 2:36:24
  4. 理解 Golang 变量在内存分配中的规则

    为什么有些变量在堆中分配、有些却在栈中分配&#xff1f; 我们先看来栈和堆的特点&#xff1a; 简单总结就是&#xff1a; 栈&#xff1a;函数局部变量&#xff0c;小数据 堆&#xff1a;大的局部变量&#xff0c;函数内部产生逃逸的变量&#xff0c;动态分配的数据&#x…...

    2024/5/1 13:25:19
  5. 【外汇早评】美通胀数据走低,美元调整

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

    2024/5/1 17:30:59
  6. 【原油贵金属周评】原油多头拥挤,价格调整

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

    2024/5/2 16:16:39
  7. 【外汇周评】靓丽非农不及疲软通胀影响

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

    2024/4/29 2:29:43
  8. 【原油贵金属早评】库存继续增加,油价收跌

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

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

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

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

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

    2024/4/27 14:22:49
  11. 【外汇早评】美欲与伊朗重谈协议

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

    2024/4/28 1:28:33
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

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

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

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

    2024/4/27 17:59:30
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

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

    2024/5/2 15:04:34
  15. 【外汇早评】美伊僵持,风险情绪继续升温

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

    2024/4/28 1:34:08
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

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

    2024/4/26 19:03:37
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

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

    2024/4/29 20:46:55
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

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

    2024/4/30 22:21:04
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

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

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

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

    2024/4/27 23:24:42
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

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

    2024/4/28 5:48:52
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

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

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

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

    2024/5/2 9:07:46
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

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

    2024/4/30 9:42:49
  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