Most states in your application will probably have a url associated with them. URL Routing was not an afterthought to the state mechanics, but was figured into the design from the beginning (all while keeping states separate from url routing)
应用程序中的大多数状态可能会有一个与之关联的 url。url 路由不是对状态机制的事后考虑, 而是从一开始就被设计到了设计中 (所有的状态都保持与 url 路由分开)

Here's how you set a basic url.
下面是如何设置基本url的方法。

$stateProvider.state('contacts', {url: "/contacts",templateUrl: 'contacts.html'})

Now when the user accesses index.html/contacts then the 'contacts' state would become active and the main ui-view will be populated with the 'contacts.html' partial. Alternatively, if the user were to transition to the 'contacts' state via transitionTo('contacts') then the url would be updated to index.html/contacts
当用户访问 index.html/contacts时。然后,“contacts”状态将变为活动,ui-view将被“contacts.html”填充。或者,如果用户通过transitionTo("contacts")切换到“contacts”状态,那么url将被更新为index.html/contacts

URL Parameters
URL参数

Basic Parameters
基本参数

Often, URLs have dynamic parts to them which are called parameters. There are several options for specifying parameters. A basic parameter looks like this:
通常,UR有动态的部分,它们被称为参数。有几个选项可以指定参数。一个基本的参数是这样的:

$stateProvider.state('contacts.detail', {url: "/contacts/:contactId",templateUrl: 'contacts.detail.html',controller: function ($stateParams) {// If we got here from a url of /contacts/42expect($stateParams).toBe({contactId: "42"});}})

Alternatively you can also use curly brackets:
或者你也可以使用花括号:

// identical to previous example
url: "/contacts/{contactId}" 

Examples:
示例:

  • '/hello/' - Matches only if the path is exactly '/hello/'. There is no special treatment for trailing slashes, and patterns have to match the entire path, not just a prefix.
    '/hello/'-只有在路径完全是“/hello/”的情况下才匹配。对于后面的斜杠没有特殊的处理,并且模式必须匹配整个路径,而不仅仅是一个前缀。
  • '/user/:id' - Matches '/user/bob' or '/user/1234!!!' or even '/user/' but not '/user' or '/user/bob/details'. The second path segment will be captured as the parameter 'id'.
    '/user/:id' - 匹配 '/user/bob' 或 '/user/1234!!!' 或者是 '/user/' 但不是 '/user' 或 '/user/bob/details'. 第二个路径段将被捕获为参数'id'。
  • '/user/{id}' - Same as the previous example, but using curly brace syntax.
    '/user/{id}' - 与前面的示例相同,但使用的是花括号语法。
  • '/user/{id:int}' - The param is interpreted as Integer.
    '/user/{id:int}' - id参数被解释为整数。

Note:
注意

  • Parameter names may contain only word characters (latin letters, digits, and underscore) and must be unique within the pattern (across both path and search parameters).
    参数名称只能包含字母、数字和下划线, 并且在模式中必须是唯一的 (在路径和搜索参数中)。

Using Parameters in Links
在链接中使用参数

To create a link that passes parameters, use the state name like a function and pass it an object with parameter names as keys. The proper href will be generated.
要创建传递参数的链接,可以使用状态名作为函数,并传递带有参数名的对象作为键。将生成适当的href。

For example, using the above state which specified a contactId parameter, create a link like so:
例如, 使用指定了 contactId 参数的上述状态, 创建如下链接:

<a ui-sref="contacts.detail({contactId: id})">View Contact</a>

The value for id can be anything in scope.
id的值可以是任意值。

Regex Parameters
参数正则表达式

A bonus to using curly brackets is the ability to set a Regular Expression rule for the parameter:
使用花括号的一个好处是可以为参数设置正则表达式规则:

// will only match a contactId of one to eight number characters
url: "/contacts/{contactId:[0-9]{1,8}}"

Examples:示例:

  • '/user/{id:[^/]*}' - Same as '/user/{id}' from the previous example.
    '/user/{id:[^/]*}' - 与前一个示例中的“/user/id”相同。
  • '/user/{id:[0-9a-fA-F]{1,8}}' - Similar to the previous example, but only matches if the id parameter consists of 1 to 8 hex digits.
    '/user/{id:[0-9a-fA-F]{1,8}}' - 与前面的示例类似,但是只有当id参数包含1到8十六进制数字时才匹配。
  • '/files/{path:.*}' - Matches any URL starting with '/files/' and captures the rest of the path into the parameter 'path'.
    '/files/{path:.*}' - 匹配任何以'/files/'开头的URL,并将其余路径捕获到参数“path”中。
  • '/files/*path' - Ditto. Special syntax for catch all.

Warning:
警告

  • Don't put capturing parentheses into your regex patterns, the UrlMatcher in ui-router adds those itself around the entire regex. You're effectively introducing a second capture group for the same parameter, which trips up the numbering in the child URL. You can use non-capturing groups though, i.e. (?:...) is fine.
    不要在正则表达式模式中使用捕获括号,ui-router中的UrlMatcher在整个正则表达式中添加了这些括号。您可以有效地为相同的参数引入第二个捕获组,该参数将在子URL中访问编号。也就是说您可以使用非捕获组。
  • Regular expression can't include forward slashes as that's route segment delimiter
    正则表达式不能包含斜杠,因为这是路由分隔符
  • Route parameters with regular expressions can't be optional or greedy
    带有正则表达式的路由参数不能是可选的或贪婪的

Query Parameters
查询参数

You can also specify parameters as query parameters, following a '?':
还可以将参数指定为查询参数, 即'?':

url: "/contacts?myParam"
// will match to url of "/contacts?myParam=value"

If you need to have more than one, separate them with an '&':
如果你需要不止一个查询参数,则把它们用"&"分开。

url: "/contacts?myParam1&myParam2"
// will match to url of "/contacts?myParam1=value1&myParam2=wowcool"

Using Parameters without Specifying Them in State URLs
使用参数而不用在状态URL中指定它们

You still can specify what parameters to receive even though the parameters don't appear in the url. You need to add a new field params in the state and create links as specified in Using Parameters in Links
即使参数没有出现在url中,您仍然可以指定要接收的参数。您需要在状态中添加一个新的字段params,并在指定的链接中使用参数。

For example, you have the state.
例如,你的状态。

.state('contacts', {url: "/contacts",params: {param1: null},templateUrl: 'contacts.html'})

The link you create is
你创建的链接是

<a ui-sref="contacts({param1: value1})">View Contacts</a>

Or you can pass them to $state.go() too.
你也可以在$state.go()方法中使用参数

$state.go('contacts', {param1: value1})

URL Routing for Nested States
嵌套状态的URL路由

Appended Routes (default)
附加路由(默认)

When using url routing together with nested states the default behavior is for child states to append their url to the urls of each of its parent states.
当使用url路由与嵌套状态一起使用时,默认的行为是让子状态将url附加到每个父状态的url。

$stateProvider.state('contacts', {url: '/contacts',...}).state('contacts.list', {url: '/list',...});

So the routes would become:
所以路由会变成:

  • 'contacts' state matches "/contacts"
    'contacts'状态匹配"/contacts"
  • 'contacts.list' state matches "/contacts/list". The urls were combined.
    'contacts.list'状态匹配"/contacts/list"

Absolute Routes (^)
绝对路由(^)

If you want to have absolute url matching, then you need to prefix your url string with a special symbol '^'.
如果你想要有绝对的url匹配,那么你需要在你的url字符串前面加上一个特殊的符号 '^'

$stateProvider.state('contacts', {url: '/contacts',...}).state('contacts.list', {url: '^/list',...});

So the routes would become:
所以路由会变成:

  • 'contacts' state matches "/contacts"
    'contacts' 状态匹配 "/contacts"
  • 'contacts.list' state matches "/list". The urls were not combined because ^ was used.
    url'contacts.list' 状态匹配"/list",现在url没有被组合在一起,因为使用了'^'符号。

$stateParams Service
$stateParams服务

As you saw previously the $stateParams service is an object that will have one key per url parameter. The $stateParams is a perfect way to provide your controllers or other services with the individual parts of the navigated url.
正如您之前看到的,$stateParams服务是一个对象,每个url参数都有一个键。$stateParams是为您的控制器或其他服务提供导航url的各个部分的完美方式。

Note: $stateParams service must be specified as a state controller, and it will be scoped so only the relevant parameters defined in that state are available on the service object.
注意:$stateParams服务必须指定为状态控制器为作用域,因此只有在该状态中定义的相关参数在服务对象中可用。

// If you had a url on your state of:
url: '/users/:id/details/{type}/{repeat:[0-9]+}?from&to'// Then you navigated your browser to:
'/users/123/details//0'// Your $stateParams object would be
{ id:'123', type:'', repeat:'0' }// Then you navigated your browser to:
'/users/123/details/default/0?from=there&to=here'// Your $stateParams object would be
{ id:'123', type:'default', repeat:'0', from:'there', to:'here' }

Important $stateParams Gotcha
$stateParams主要问题

In state controllers, the $stateParams object will only contain the params that were registered with that state. So you will not see params registered on other states, including ancestors.
在状态控制器中,$stateParams对象只包含在该状态注册的参数。所以你不会看到参数在其他状态中注册,包括祖先状态。

$stateProvider.state('contacts.detail', {url: '/contacts/:contactId',   controller: function($stateParams){$stateParams.contactId  //*** Exists! ***//}
}).state('contacts.detail.subitem', {url: '/item/:itemId', controller: function($stateParams){$stateParams.contactId //*** Watch Out! DOESN'T EXIST!! ***//$stateParams.itemId //*** Exists! ***//  }
})

Instead, use a resolve statement in the parent route.
相反,在父路由中使用解析(resolve)语句。

$stateProvider.state('contacts.detail', {url: '/contacts/:contactId',   controller: function($stateParams){$stateParams.contactId  //*** Exists! ***//},resolve:{contactId: ['$stateParams', function($stateParams){return $stateParams.contactId;}]}
}).state('contacts.detail.subitem', {url: '/item/:itemId', controller: function($stateParams, contactId){contactId //*** Exists! ***//$stateParams.itemId //*** Exists! ***//  }
})

$urlRouterProvider

$urlRouterProvider has the responsibility of watching $location. When $location changes it runs through a list of rules one by one until a match is found. $urlRouterProvider is used behind the scenes anytime you specify a url in a state configuration. All urls are compiled into a UrlMatcher object (see $urlMatcherFactory below).
$urlRouterProvider有责任观察$location。当$location改变时,它会遍历规则列表直到找到匹配为止。当您在状态配置中指定url时,$urlRouterProvider在后台所所有的url都被编译成一个UrlMatcher对象(请参阅下面的$urlMatcherFactory)。

There are several methods on $urlRouterProvider that make it useful to use directly in your module config.
$urlRouterProvider上有几个方法,可以使它在模块配置中直接使用。

when() for redirection

Parameters:
参数:

  • what String | RegExp | UrlMatcher 您想要重定向的源路径。
  • handler String | Function 您希望将用户重定向到的目标路径。

handler 作为字符串类型时

If handler is a string, it is treated as a redirect, and is interpolated according to the syntax of match (i.e. like String.replace() for RegExp, or like a UrlMatcher pattern otherwise).
如果handler是字符串,则将其视为重定向,并根据match的语法进行插值(例如,用于RegExp的string.replace(),或者类似于UrlMatcher模式)。

app.config(function($urlRouterProvider){// when there is an empty route, redirect to /index   $urlRouterProvider.when('', '/index');// You can also use regex for the match parameter$urlRouterProvider.when(/aspx/i, '/index');
})

handler 作为函数时

If the handler is a function, it is injectable. It gets invoked if $location matches. You have the option of inject the match object as $match
如果handler是一个函数,它是可注入的。如果$location匹配,就会调用它。您可以选择将匹配对象注入$match

handler可以返回::

  • falsy to indicate that the rule didn't match after all, then $urlRouter will continue trying to find another one that matches. 
    falsy表明这条规则根本不匹配,于是url路由器将继续寻找匹配的另一个。
  • String, which is treated as a redirect and passed to $location.url()
    一个字符串,它被视为重定向,并传递给$location.url()
  • nothing or any truthy value tells $urlRouter that the url was handled
    nothing 或任何 truthy值,意思告诉 $urlRouter 该 url 已被处理

Here's the actual code that we use to register state's that have urls behind the scenes.
下面是我们用来注册状态的代码,在后台有url。

$urlRouterProvider.when(state.url, ['$match', '$stateParams', function ($match, $stateParams) {if ($state.$current.navigable != state || !equalForKeys($match, $stateParams)) {$state.transitionTo(state, $match, false);}
}]);

otherwise() for invalid routes
otherwise为无效的路由重定向

Parameters:
参数

  • path String | Function The url path you want to redirect to or a function rule that returns the url path. The function version is passed two params: $injector and $location.
    path String | Function 您想要重定向的url路径,或者返回url路径的函数。函数版本有两个参数:$injector和$location。
app.config(function($urlRouterProvider){// if the path doesn't match any of the urls you configured// otherwise will take care of routing the user to the specified url$urlRouterProvider.otherwise('/index');// Example of using function rule as param$urlRouterProvider.otherwise(function($injector, $location){... some advanced code...});
})

rule() for custom url handling
rule()用于自定义处理url规则

Parameters:
参数

  • handler Function A function that takes in the $injector and $location services as arguments. You are responsible for returning a valid path as a string.
    handler Function 一个函数,它接受$injector和$location服务作为参数。函数需要返回一条有效字符串路由。
app.config(function ($urlRouterProvider) {// Here's an example of how you might allow case insensitive urls// Note that this is an example, and you may also use // $urlMatcherFactory.caseInsensitive(true); for a similar result.$urlRouterProvider.rule(function ($injector, $location) {//what this function returns will be set as the $location.urlvar path = $location.path(), normalized = path.toLowerCase();if (path != normalized) {//instead of returning a new url string, I'll just change the $location.path directly so I don't have to worry about constructing a new url string and so a new state change is not triggered$location.replace().path(normalized);}// because we've returned nothing, no state change occurs});
})

$urlMatcherFactory and UrlMatchers
$urlMatcherFactory 和 UrlMatchers

Defines the syntax for url patterns and parameter placeholders. This factory service is used behind the scenes by $urlRouterProvider to cache compiled UrlMatcher objects, instead of having to re-parse url patterns on every location change. Most users will not need to use $urlMatcherFactory directly, however it could be useful to craft a UrlMatcher object and pass it as the url to the state config.
定义url模式和参数占位符的语法。该工厂服务在后台使用$urlRouterProvider来缓存已编译的UrlMatcher对象,当url更改时而不必重新解析位置。大多数用户不需要直接使用$urlMatcherFactory,但是它可以很好地创建一个UrlMatcher对象并将其作为url传递给状态配置。

Please refer to the comment documentation within the $urlMatcherFactory file to learn more.
请参阅$urlMatcherFactory文件中的注释文档以了解更多信息。

var urlMatcher = $urlMatcherFactory.compile("/home/:id?param1");
$stateProvider.state('myState', {url: urlMatcher 
});


需要命理预测服务请加微信:



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

相关文章

  1. Angular.js angular-ui-router的简单实践

    Angular.js angular-ui-router的简单实践 标签&#xff1a; Angular angular-ui-router web前端 开始之前 一些说明 angular-ui-router的使用方法有很多&#xff0c;此文中&#xff0c;我们直接在控制器中使用&#xff0c;并完成一个简单的路由。文中 Angular.js 的版本为 1.5.…...

    2024/4/24 20:18:50
  2. 使用bower安装angular-ui-router时release目录为空

    今天用bower安装angular-ui-router(0.2.8)时&#xff0c;release目录为空&#xff0c;找不到能导入的文件。上万能的stackoverflow找了一下&#xff0c;应该是一个bug&#xff0c;暂时的解决方法为使用github上的另外一个分支&#xff1a; bower install angular-ui-router#0.2…...

    2024/4/21 2:29:06
  3. ngRoute (angular-route.js) 和 ui-router (angular-ui-router.js) 模块有什么不同呢?

    ngRoute (angular-route.js) 和 ui-router (angular-ui-router.js) 模块有什么不同呢&#xff1f; 很多文章中都有说道&#xff1a;当时ngRoute在路由配置时用$routeProvider&#xff0c;但是当ui-router路由配置时用 $stateProvider 和 $urlRouterProvider。 那么它们有什么不…...

    2024/4/21 2:29:05
  4. angular-ui-router中的$stateProvider设置

    $stateProvider.state(contacts.list, {url: ,templateUrl: contacts.list.html}).state(contacts.detail, {url: /{contactId:[0-9]{1,4}},/*  1、view 用在该状态下有多个 ui-view 的情况&#xff0c;可以对不同的 ui-view 使用特定的 template, controller, resolve data2、…...

    2024/4/21 2:29:04
  5. angular ui-ace

    Ace编辑器只读状态Ace编辑器只读状态Ace编辑器 Ace编辑器是一个嵌入web的代码编辑器&#xff0c;支持语法高亮&#xff0c;自动补全等功能&#xff0c;如果想在angular1.x的项目中的页面展示或编辑代码&#xff0c;使用该工具是最合适的。 只读状态 有的时候&#xff0c;我们…...

    2024/4/21 2:29:03
  6. angular-semantic-ui

    angular-semantic-ui 详细介绍 angular-semantic-ui 是 AngularJS 为 Semantic UI 设计的原生指令集。 指令 accordion checkbox dimmer dropdown modal popup rating sidebar 构建 获取 repo&#xff1a; git clone https://github.com/angularify/angular-semanti…...

    2024/4/21 2:29:02
  7. Angular-Ui-Router+ocLazyLoad动态加载脚本

    在使用angular过程以前同事是采取一次性加载方式&#xff0c;在index页面一次性加载所有的js跟css&#xff0c;这种加载方式只适合教学和小型项目中&#xff0c;中大型不建议使用&#xff0c;加载速度影响到用户体验。 在使用了Ui-Router以后&#xff0c;我第一想法就是把每个…...

    2024/4/23 14:26:39
  8. angular使用ui-select小结

    初识&#xff1a; 首先看看ui-select的结构&#xff1a; <ui-select ng-model"demoChoose" theme"bootstrap" ng-change"changeDemoChooseList()"><ui-select-match><span>{{$item}}</span></ui-select-match>&…...

    2024/4/22 3:25:12
  9. angular-ui/bootstrap

    https://github.com/angular-ui/bootstrap table所有相关&#xff1a; http://bazalt-cms.com/ng-table/ https://github.com/esvit/ng-table https://github.com/angular-ui/ng-grid http://bazalt-cms.com/ng-table/example/3 https://github.com/esvit/ng-table-re…...

    2024/4/21 2:28:59
  10. CSS - angular-ui-bootstrap标签库

    网址&#xff1a;https://github.com/angular-ui/bootstrap Bootstrap图标库里面分为了三类内容&#xff1a; Font Awesome&#xff1a;Bootstrap专用图标字体&#xff0c;Font Awesome 中包含的所有图标都是矢量的&#xff0c;也就可以任意缩放&#xff0c;避免了一个图标做多…...

    2024/4/21 2:28:59
  11. angular-ui-bootstrap弹出框的使用(一)

    在开发项目时&#xff0c;我们经常性的会遇到弹出框的需求&#xff0c;例如登陆&#xff0c;注册&#xff0c;添加信息等等....面对这一需求&#xff0c;我们当然也可以使用自己的双手进行编写&#xff0c;如果你时间充足可以试试。 今天我们讲解一下如何在angular框架的项目中…...

    2024/4/20 20:24:01
  12. Angular-ui-router进阶三之传参

    版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载 传参方式 一般情况&#xff0c;主要用以下两种传参方式&#xff1a;$state.go(stateName", {paramName: param}) ui-sref"stateName({})" 下面来根据一个示例体验以下基本传参,html代…...

    2024/4/20 20:23:59
  13. 【AngularJS系列】基于angular-ui-select定制下拉框多选

    背景&#xff1a;希望有个下拉多选框&#xff0c;显示一个店铺的属性&#xff0c;其属性值类似于&#xff0c;如下表示&#xff1a;0001&#xff08;十进制为1&#xff09;表示店铺属性1&#xff0c;0010表示店铺属性2&#xff0c;以此类推。若某店铺属性为0011&#xff08;十进…...

    2024/4/20 20:23:58
  14. angular-ui-switch

    代码&#xff1a;https://codepen.io/anon/pen/gxmWzB github&#xff1a; https://github.com/xpepermint/angular-ui-switch 功能类似于bootstrap的switch功能&#xff0c;由于数据绑定的存在&#xff0c;不使用对象中的方法切换&#xff0c;改用watch监听model绑定的值&…...

    2024/4/20 20:23:57
  15. Angular-ui-route

    ng-route ng-route是官方的原来就实现的路由器 范例如下: angular.module(myApp, []).config(myAppCtrl, [$routeProvider, function ( $routeProvider ) {$routeProvider.when(/, {templateUrl: views/page-a.html,controller: pageACtrl}).when(/next, {templateUrl: views/…...

    2024/4/21 2:28:57
  16. angular-ui-bootstrap (1)

    2019独角兽企业重金招聘Python工程师标准>>> ###初探 ####入门&#xff0c; 创建项目&#xff0c;新建一个页面&#xff0c;命名为demo1.html,然后引入bootstrap&#xff0c;引入angular&#xff0c;再引入angular-ui-bootstrap。具体引入内容如下所示&#xff1a; …...

    2024/4/21 2:28:56
  17. angular-ui-tree

    angular-ui-tree的github项目地址&#xff1a;https://github.com/angular-ui-tree/angular-ui-tree DEMO目录结构如下&#xff1a; bootstrap.css为3.0以上 app.css内容.btn { margin-right: 8px;}.angular-ui-tree-handle { background: #f8faff; border: 1px sol…...

    2024/4/21 2:28:55
  18. 1.angular网站学习

    1.angular官网&#xff1a; 中文&#xff1a;https://angular.cn/ 英文&#xff1a;https://angular.io 2.antd: https://ng.ant.design/ 3.ng-alain: https://ng-alain.com/...

    2024/4/21 2:28:54
  19. Angular7知识点----前篇

    版权声明&#xff1a;本文为博主原创文章&#xff0c;未经博主允许不得转载。 https://blog.csdn.net/qq_34414916/article/details/85113777 Angular7入门辅助教程 1、Angular简介 Angular 是一个开发平台。它能帮你更轻松的构建 Web 应用。Angular 集声明式模板、依赖注入、…...

    2024/4/21 2:28:53
  20. 在Angular 12中使用Router浏览视图

    Kendo UI for Angular最新版下载 Kendo UI for Angular是专业级的Angular UI组件库&#xff0c;不仅是将其他供应商提供的现有组件封装起来&#xff0c;telerik致力于提供纯粹高性能的Angular UI组件&#xff0c;而无需任何jQuery依赖关系。无论您是使用TypeScript还是JavaScr…...

    2024/4/21 2:28:52

最新文章

  1. LeetCode刷题笔记第168题:Excel表列名称

    LeetCode刷题笔记第168题&#xff1a;Excel表列名称 题目&#xff1a; 给你一个整数 columnNumber &#xff0c;返回它在 Excel 表中相对应的列名称。 例如&#xff1a; A -> 1 B -> 2 C -> 3 … Z -> 26 AA -> 27 AB -> 28 … 想法&#xff1a; 类似十…...

    2024/5/3 15:21:06
  2. 梯度消失和梯度爆炸的一些处理方法

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

    2024/3/20 10:50:27
  3. javaWeb网上零食销售系统

    1 绪 论 目前&#xff0c;我国的网民数量已经达到7.31亿人&#xff0c;随着互联网购物和互联网支付的普及&#xff0c;使得人类的经济活动进入了一个崭新的时代。淘宝&#xff0c;京东等网络消费平台功能的日益完善&#xff0c;使得人们足不出户就可以得到自己想要的东西。如今…...

    2024/5/3 10:08:04
  4. promise.all方式使用

    romise.all( ).then( ) 处理多个异步任务&#xff0c;且所有的异步任务都得到结果时的情况。 比如&#xff1a;用户点击按钮&#xff0c;会弹出一个弹出对话框&#xff0c;对话框中有两部分数据呈现&#xff0c;这两部分数据分别是不同的后端接口获取的数据。 弹框弹出后的初…...

    2024/5/2 21:09:45
  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