最新的DevExpress WinForm版本中,开发者可以使用WinForm产品线(通过DevExpress AlertControl和ToastNotificationManager)创建两种类型的通知/警报,最近技术团队还推荐使用DevExpress ToastNotificationManager来显示原生 Windows 10+ 通知。
DevExpress Universal Subscription官方最新版免费下载试用,历史版本下载,在线文档和帮助文件下载-慧都网
尽管自定义选项有些有限(toast 仅提供九个布局模板),但ToastNotificationManager 代表了比传统的基于面板的AlertControl更好、更现代的替代方案。
在最新版中为AlertControl发布的HTML & CSS 模板,允许开发人员创建时尚的警告通知,同时可利用AlertControl 本身的简单性。下图说明了技术团队提供的一些示例模板(查找您喜欢的模板并将其复制到项目中):
大多数通知只是一个带有几个文本块、图像和按钮的矩形,设计这样简单的对象对每个人来说都应该相对容易——无论您有 HTML 和 CSS 经验,还是开始在WinForms 应用程序中利用其潜力。 例如以下模板创建一个带有图标、标题、描述和“确定”按钮的通知。
<div class="container">
<div class="popup">
<img src="${SvgImage}" class="image" />
<div class="caption">Notification Title</div>
<div class="text">This notification uses a web-inspired template.</div>
<div id="okButton" class="ok-button">OK</div>
</div>
</div>
请注意,在此示例标记中,通知标题和说明是静态字符串。 如果您要为用户显示一条消息,此解决方案就可以正常工作。
当然我们的数据绑定功能提供了更大的灵活性——您可以创建一个模板并将不同的数据对象传递给它。 因此,您可以为多个通知消息重用一个模板。
如果您更喜欢此选项,请使用 ${Data_property_name} 占位符,如下所示:
<div class="text">${Caption}</div>
<div class="text">${Text}</div>
“Caption”和“Text”是标准占位符,可以通过 AlertControl.Show 重载直接替换:
alertControl1.Show(this, "Sample caption", "Sample notification text");
您可以添加模板设计所需的任意数量的占位符,但请记住处理 AlertControl.BeforeFormShow 事件并将数据对象传递给 e.HtmlPopup.DataContext 属性。 例如,下面的代码使用 div 元素来显示由五个占位符组合而成的字符串:两个用于字符串值(FullName、Ticker),两个用于数字(Percentage、Price),一个用于自定义 Direction 枚举值。
<div class="message-text">
${FullName} ({Ticker}) {Direction} {Percentage}%. The current price is ${Price}.
</div>
通知图像也在运行时检索,img 标签使用占位符替代静态 src 属性值。
<img src="${StockImage}" class="message-image" />
此示例应用程序使用 StockInfo 类对象作为数据项。
public class StockInfo {
public StockInfo(string ticker, string fullName, Direction direction,
double percentage, double price, SvgImage img) {
Ticker = ticker;
FullName = fullName;
Direction = direction;
Percentage = percentage;
Price = price;
StockImage = img;
}
public string Ticker { get; set; }
public string FullName { get; set; }
public Direction Direction { get; set; }
public double Percentage { get; set; }
public double Price { get; set; }
public SvgImage StockImage { get; set; }
}
public enum Direction {
[Description("rises")]
Up,
[Description("falls")]
Down
}
当数据项的 "Price" 值在短时间内发生显着变化时会触发通知,相应的项目分配给 AlertControl.BeforeFormShow 事件处理程序中的 e.HtmlPopup.DataContext 属性。
void AlertControl1_BeforeFormShow(object sender, AlertFormEventArgs e) {
// TODO: Retrieve a data item
e.HtmlPopup.DataContext = myStockInfoInstance;
}
因此,通知会从指定为 DataContext 的数据项中检索其 ${Field_Name} 占位符的数据。 请注意,边条的颜色会根据 "Direction" 枚举值而变化。
DevExpress WinForm
DevExpress WinForm拥有180+组件和UI库,能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForms能完美构建流畅、美观且易于使用的应用程序,无论是Office风格的界面,还是分析处理大批量的业务数据,它都能轻松胜任!
小推荐
下面是基本的、最低限度的网站基本标签:
<meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><!-- 以上 3 个 meta 标签 *必须* 放在 head 的最前面;其他任何的 head 内容必须在这些标签的 *后面* --><title>页面标题</title>
网页元素
<!-- 文档标题 --><title>页面标题</title><!-- 基本 URL 作用于文档中所包含的所有相对 URL --><base href="https://example.com/page.html"><!-- 外部的 CSS --><link rel="stylesheet" href="styles.css"><!-- 文档内的 CSS --><style> /* ... */</style><!-- JavaScript --><script src="script.js"></script> <noscript><!--无 JS 时的替代--></noscript>
Meta 标签
<!-- 设置文档的字符编码 --><meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><!-- 以上 3 个 meta 标签 *必须* 放在 head 的最前面;其他任何的 head 内容必须在这些标签的 *后面* --><!-- 允许控制资源的过度加载 --><meta http-equiv="Content-Security-Policy" content="default-src 'self'"><!-- 尽早地放置在文档中 --><!-- 仅应用于该标签下的内容 --><!-- Web 应用的名称(仅当网站被用作为一个应用时才使用)--><meta name="application-name" content="应用名称"><!-- 针对页面的简短描述(限制 150 字符)--><!-- 在*某些*情况下,该描述是被用作搜索结果展示片段的一部分 --><meta name="description" content="一个页面描述"><!-- 控制搜索引擎的抓取和索引行为 --><meta name="robots" content="index,follow"><!-- 所有搜索引擎 --><meta name="googlebot" content="index,follow"><!-- 仅对 Google 有效 --><!-- 告诉 Google 不显示网站链接的搜索框 --><meta name="google" content="nositelinkssearchbox"><!-- 告诉 Google 不提供此页面的翻译 --><meta name="google" content="notranslate"><!-- 验证 Google 搜索控制台的所有权 --><meta name="google-site-verification" content="verification_token"><!-- 验证 Yandex 网站管理员的所有权 --><meta name="yandex-verification" content="verification_token"><!-- 验证 Bing 网站管理员中心的所有权 --><meta name="msvalidate.01" content="verification_token"><!-- 验证 Alexa 控制台的所有权 --><meta name="alexaVerifyID" content="verification_token"><!-- 验证 Pinterest 控制台的所有权 --><meta name="p:domain_verify" content="code from pinterest"><!-- 验证 Norton 安全站点的所有权 --><meta name="norton-safeweb-site-verification" content="norton code"><!-- 用来命名软件或用于构建网页(如 - WordPress、Dreamweaver)--><meta name="generator" content="program"><!-- 关于你的网站主题的简短描述 --><meta name="subject" content="你的网站主题"><!-- 基于网站内容给出一般的年龄分级 --><meta name="rating" content="General"><!-- 允许控制 referrer 信息如何传递 --><meta name="referrer" content="no-referrer"><!-- 禁用自动检测和格式化可能的电话号码 --><meta name="format-detection" content="telephone=no"><!-- 通过设置为 “off” 完全退出 DNS 预取 --><meta http-equiv="x-dns-prefetch-control" content="off"><!-- 在客户端存储 cookie,web 浏览器的客户端识别 --><meta http-equiv="set-cookie" content="name=value; expires=date; path=url"><!-- 指定要显示在一个特定框架中的页面 --><meta http-equiv="Window-Target" content="_value"><!-- 地理标签 --><meta name="ICBM" content="latitude, longitude"> <meta name="geo.position" content="latitude;longitude"> <meta name="geo.region" content="country[-state]"><!-- 国家代码 (ISO 3166-1): 强制性, 州代码 (ISO 3166-2): 可选; 如 content="US" / content="US-NY" --><meta name="geo.placename" content="city/town"><!-- 如 content="New York City" -->
链接
<!-- 表明一个 CSS 样式表 --><link rel="stylesheet" href="https://example.com/styles.css"><!-- 有助于防止出现内容重复的问题 --><link rel="canonical" href="https://example.com/2010/06/9-things-to-do-before-entering-social-media.html"><!-- 之前用于包含 icon 链接,但已被废弃并不再使用 --><link rel="shortlink" href="https://example.com/?p=42"><!-- 链接到当前文档的一个 AMP HTML 版本 --><link rel="amphtml" href="https://example.com/path/to/amp-version.html"><!-- 链接到一个指定 Web 应用程序“安装”证书的 JSON 文件 --><link rel="manifest" href="manifest.json"><!-- 链接到文档的作者 --><link rel="author" href="humans.txt"><!-- 指向一个适用于链接内容的版权申明 --><link rel="license" href="copyright.html"><!-- 给出可能的你的另一种语言的文档位置参考 --><link rel="alternate" href="https://es.example.com/" hreflang="es"><!-- 提供了关于作者或其他人的信息 --><link rel="me" href="https://google.com/profiles/thenextweb" type="text/html"> <link rel="me" href="mailto:name@example.com"> <link rel="me" href="sms:+15035550125"><!-- 链接到一个描述历史记录、文档或其他具有历史意义的材料的集合的文档。 --><link rel="archives" href="https://example.com/archives/"><!-- 链接到层次结构中的顶级资源 --><link rel="index" href="https://example.com/"><!-- 给出一个自我参考 - 当文档有多个可能的参考时非常有用 --><link rel="self" type="application/atom+xml" href="https://example.com/atomFeed.php?page=3"><!-- 分别是在一系列文件中的第一个、下一个、上一个和最后一个 --><link rel="first" href="https://example.com/atomFeed.php"> <link rel="next" href="https://example.com/atomFeed.php?page=4"> <link rel="prev" href="https://example.com/atomFeed.php?page=2"> <link rel="last" href="https://example.com/atomFeed.php?page=147"><!-- 当使用第三方服务来维护 blog 时使用 --><link rel="EditURI" href="https://example.com/xmlrpc.php?rsd" type="application/rsd+xml" title="RSD"><!-- 当另一个 WordPress 博客链接到你的 WordPress 博客或文章时形成一个自动化的评论 --><link rel="pingback" href="https://example.com/xmlrpc.php"><!-- 当你在自己的页面上链接到一个 url 时通知它 --><link rel="webmention" href="https://example.com/webmention"><!-- 加载一个外部的 HTML 文件到当前 HTML 文件中 --><link rel="import" href="/path/to/component.html"><!-- 打开搜索 --><link rel="search" href="/open-search.xml" type="application/opensearchdescription+xml" title="Search Title"><!-- Feeds --><link rel="alternate" href="https://feeds.feedburner.com/example" type="application/rss+xml" title="RSS"> <link rel="alternate" href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3"><!-- 预取,预载,预浏览 --><link rel="dns-prefetch" href="//example.com/"> <link rel="preconnect" href="https://www.example.com/"> <link rel="prefetch" href="https://www.example.com/"> <link rel="prerender" href="https://example.com/"> <link rel="preload" href="image.png" as="image"><!-- 更多信息:https://css-tricks.com/prefetching-preloading-prebrowsing/ -->
网站图标
<!-- 针对 IE 10 及以下版本 --><!-- 如果将 `favicon.ico` 放在根目录下,则无需标签 --><!-- 对于 IE 11、Chrome、Firefox、Safari 和 Opera --><link rel="icon" type="image/png" sizes="16x16" href="/path/to/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="32x32" href="/path/to/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/path/to/favicon-96x96.png"><!-- 更多信息: https://bitsofco.de/all-about-favicons-and-touch-icons/ -->
社交
Facebook Open Graph
<meta property="fb:app_id" content="123456789"> <meta property="og:url" content="https://example.com/page.html"> <meta property="og:type" content="website"> <meta property="og:title" content="Content Title"> <meta property="og:image" content="https://example.com/image.jpg"> <meta property="og:description" content="Description Here"> <meta property="og:site_name" content="Site Name"> <meta property="og:locale" content="en_US"> <meta property="article:author" content="">
Facebook Instant Articles
<meta charset="utf-8"> <meta property="op:markup_version" content="v1.0"><!-- 你的文章的 Web 版网址 --><link rel="canonical" href="http://example.com/article.html"><!-- 用于该文章的样式 --><meta property="fb:article_style" content="myarticlestyle">
Twitter Cards
<meta name="twitter:card" content="summary"> <meta name="twitter:site" content="@site_account"> <meta name="twitter:creator" content="@individual_account"> <meta name="twitter:url" content="https://example.com/page.html"> <meta name="twitter:title" content="Content Title"> <meta name="twitter:description" content="Content description less than 200 characters"> <meta name="twitter:image" content="https://example.com/image.jpg">
Google+ / Schema.org
<link href="https://plus.google.com/+YourPage" rel="publisher"> <meta itemprop="name" content="内容标题"> <meta itemprop="description" content="内容描述少于 200 个字符"> <meta itemprop="image" content="https://example.com/image.jpg">
根据他们的帮助中心可知,Pinterest 允许你禁止他人保存你网站里的内容。description
为可选。
<meta name="pinterest" content="nopin" description="Sorry, you can't save from my website!">
OEmbed
<link rel="alternate" type="application/json+oembed" href="http://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&format=json" title="oEmbed Profile: JSON"> <link rel="alternate" type="text/xml+oembed" href="http://example.com/services/oembed?url=http%3A%2F%2Fexample.com%2Ffoo%2F&format=xml" title="oEmbed Profile: XML">
浏览器 / 平台
Apple iOS
<!-- 智能应用 Banner --><meta name="apple-itunes-app" content="app-id=APP_ID,affiliate-data=AFFILIATE_ID,app-argument=SOME_TEXT"><!-- 禁用自动检测和格式化可能的电话号码 --><meta name="format-detection" content="telephone=no"><!-- 添加到主屏幕 --><meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="应用标题"><!-- 触摸图标 --><!-- 在大多数情况下,在 `<head>` 中,一个 180×180px 触摸图标就已经足够了 --><link rel="apple-touch-icon" href="/path/to/apple-touch-icon.png"><!-- 注意:iOS 7 上的 Safari 不会对图标产生效果。 --><!-- 较早版本的 Safari 不会对以 `-precomposed.png` 后缀命名的图标文件产生效果。 --><!-- 启动画面(已无效) --><link rel="apple-touch-startup-image" href="path/to/startup.png"><!-- iOS 应用深层链接 --><meta name="apple-itunes-app" content="app-id=APP-ID, app-argument=http/url-sample.com"> <link rel="alternate" href="ios-app://APP-ID/http/url-sample.com">
Apple Safari
<!-- 固定网站 --><link rel="mask-icon" href="path/to/icon.svg" color="red">
Google Android
<meta name="theme-color" content="#E64545"><!-- 添加到主屏幕 --><meta name="mobile-web-app-capable" content="yes"><!-- 更多信息:https://developer.chrome.com/multidevice/android/installtohomescreen -->
Google Chrome
<link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/APP_ID"><!-- 禁用翻译提示 --><meta name="google" content="notranslate">
Google Chrome Mobile (只针对 Android)
从 Chrome 31 开始,你可以设置你的 Web 应用为“app mode”,如 Safari。
<!-- 链接到一个 manifest 并定义 manifest 的元数据。--><!-- manifest.json 中的例子也可以通过以下链接找到。--><link rel="manifest" href="manifest.json"><!-- 定义你的网页为 Web 应用 --><meta name="mobile-web-app-capable" content="yes"><!-- 主屏幕图标 --><link rel="icon" sizes="192x192" href="highres-icon.png">
Microsoft Internet Explorer
<meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="skype_toolbar" content="skype_toolbar_parser_compatible"><!-- IE10: 禁用链接点击高亮 (https://blogs.windows.com/buildingapps/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10/) --><meta name="msapplication-tap-highlight" content="no"><!-- 固定网站 (https://msdn.microsoft.com/en-us/library/dn255024(v=vs.85).aspx) --><meta name="application-name" content="Sample Title"> <meta name="msapplication-tooltip" content="A description of what this site does."> <meta name="msapplication-starturl" content="http://example.com/index.html?pinned=true"> <meta name="msapplication-navbutton-color" content="#FF3300"> <meta name="msapplication-window" content="width=800;height=600"> <meta name="msapplication-task" content="name=Task 1;action-uri=http://host/Page1.html;icon-uri=http://host/icon1.ico"> <meta name="msapplication-task" content="name=Task 2;action-uri=http://microsoft.com/Page2.html;icon-uri=http://host/icon2.ico"> <meta name="msapplication-badge" value="frequency=NUMBER_IN_MINUTES;polling-uri=http://example.com/path/to/file.xml"> <meta name="msapplication-TileColor" content="#FF3300"> <meta name="msapplication-TileImage" content="path/to/tileimage.jpg"> <meta name="msapplication-config" content="http://example.com/browserconfig.xml"> <meta name="msapplication-notification" content="frequency=60;polling-uri=http://example.com/livetile;polling-uri2=http://example.com/livetile2"> <meta name="msapplication-task-separator" content="1">
应用链接
<!-- iOS --><meta property="al:ios:url" content="applinks://docs"> <meta property="al:ios:app_store_id" content="12345"> <meta property="al:ios:app_name" content="App Links"><!-- Android --><meta property="al:android:url" content="applinks://docs"> <meta property="al:android:app_name" content="App Links"> <meta property="al:android:package" content="org.applinks"><!-- Web 回退 --><meta property="al:web:url" content="http://applinks.org/documentation"><!-- 更多信息:http://applinks.org/documentation/ -->
国内的浏览器
360 浏览器
<!-- 选择渲染引擎 --><meta name="renderer" content="webkit|ie-comp|ie-stand">
QQ 移动浏览器
<!-- 在指定方向上锁定屏幕(锁定横/竖屏) --><meta name="x5-orientation" content="landscape/portrait"><!-- 全屏显示此页面 --><meta name="x5-fullscreen" content="true"><!-- 页面将以“应用模式”显示(全屏等)--><meta name="x5-page-mode" content="app">
UC 移动浏览器
<!-- 在指定方向上锁定屏幕(锁定横/竖屏) --><meta name="screen-orientation" content="landscape/portrait"><!-- 全屏显示此页面 --><meta name="full-screen" content="yes"><!-- 即使在“文本模式”下,UC 浏览器也会显示图片 --><meta name="imagemode" content="force"><!-- 页面将以“应用模式”显示(全屏、禁止手势等) --><meta name="browsermode" content="application"><!-- 在此页面禁用 UC 浏览器的“夜间模式” --><meta name="nightmode" content="disable"><!-- 简化页面,减少数据传输 --><meta name="layoutmode" content="fitscreen"><!-- 禁用的 UC 浏览器的功能,“当此页面中有较多文本时缩放字体” --><meta name="wap-font-scale" content="no">
注意
性能
当启用 GZIP 时,移动 href
属性到该元素的开头以提高压缩,因为 href
属性被用于 a
、base
和 link
标签。
示例:
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
段时间亚马逊日本站出公告称卖家不能在详情页面上使用HTML代码后,多位其他站点的亚马逊卖家就开始了一连串的问候:为什么美国站并没有这个news?为什么欧洲站并没有这个news?是不是新规只针对日本站?
时间给出答案:欧洲站以及美国站卖家也即将不能使用HTML标签了。
欧美站发出通知:将不再支持在详情页面上使用HTML标记
据了解,亚马逊一直不建议卖家在详情页面上使用任何HTML内容,这一点在商品详情页面规则中早已经阐明,即使如此还是有不少亚马逊卖家在商品描述页面使用HTML。
近日,亚马逊欧洲站和美国站相继发出通知明确表示,将不再支持在详情页面上使用HTML标记。
从图中内容可以看出,为了向消费者提供安全性以及在非HTML设备上列出产品的多功能性,2021年7月17日之后,亚马逊将停止支持在产品详细信息页面上的产品说明中使用HTML标签。美国站卖家需要按照平台的产品详细信息页面规则中的规定。
亚马逊建议卖家在上述日期之前使用HTML标签更新商品详情页面,卖家可以使用卖方中心或通常的渠道进行此类更新。
2021年7月17日之后,不支持在产品详细信息页面中包含HTML标记的所有产品描述将停止显示HTML格式。例如,如果卖家在产品说明的一行中使用HTML标记,则该行可能会被删除或不使用HTML格式显示,这取决于标记的用法。
除了美国站,欧洲站卖家也即将不能使用HTML标记了。
从中可以看出,亚马逊对欧洲站卖家的要求和美国站卖家大差不差,只是新规生效日期不同,暨从2021年6月19日开始,如果欧洲站卖家在产品说明的任何行中使用HTML标签,则该行将被删除或不使用HTML格式显示。
卖家:怎么换行?怎么加粗字体?
小编了解到,很多亚马逊卖家一直以来都是用HTML代码来编辑详情页,现在亚马逊不让卖家使用HTML了,多位卖家异常惆怅:还有什么办法实现换行和段落功能吗?
一位手工卖家表示,这个政策对手工卖家来说很糟糕,因为直到最近,我们还在大量使用HTML,现在我们不得不接受重新编辑所有这些列表的重大噩耗!
另一位亚马逊卖家同样抱怨连连:这太可怕了!我仍在处理白色背景图片,并在更新照片时重新修改了我的描述,现在即使是我遵循的规则,我也必须重新更改所有内容,因为它们再次更改了规则!
实际上,这个政策也再次把品牌话题带动了起来,用某位亚马逊卖家自己的话说就是,亚马逊是在逼着卖家注册品牌,换A+,这是大势所趋。以美国站卖家为例,亚马逊Listing描述从7.17后不再支持HTML tags, 也就是说还不备案品牌的卖家,以后描述的页面可能就是一堆堆的样子,这实在是没眼看。
小编发现,从今年4月份开始,就陆续有卖家表示用不了HTML了:
卖家A:最近英国站不能用可视化编辑器了,我最近都是手打<b>,一用那个可视化编辑器就提示无效值。
卖家B:4月份上传了几个产品,美国站用可视化编辑器的代码也显示不了分行了……
值得注意的是,政策出来后卖家在以后能否用HTML换行的问题上纠结了起来。对此政策,一位卖家认为以后详情页描述里面,常用的换行<br>,换段落<p>,加粗<b>这些标签都不准再用了,趁早批量用模板更新移除,否则可能会影响listing的完整显示。
但是也有卖家表示,政策生效后仍可以用</br>换行,因为亚马逊表示,在特殊情况下,卖家可以在描述中根据需要使用换行符 (</br>)。
小编想说,不管怎样,卖家还是早做准备,弄清楚亚马逊所说的特殊情况是什么意思,以免政策生效后亡羊补牢为时已晚。
商品详情页面规则
除了亚马逊将停止支持在产品详细信息页面上的产品说明中使用HTML标签这个新闻值得卖家关注,广大亚马逊卖家还需仔细研读商品详情页面规则。
买家通过商品详情页面了解卖家的商品,亚马逊也对商品详情页面进行了严格规定,亚马逊要求卖家确保每个商品详情页面包含单一商品,这有助于为买家提供清晰且一致的购买体验。一般来说,卖家需要遵守以下规定:
1、遵守任何相关的风格指南,避免使用HTML、JavaScript或其他代码。
2、排除不适宜的内容,如淫秽或攻击性材料、链接或联系信息、情节剧透、评论或评论请求以及广告。
避免为已有详情页面的商品创建重复页面。
3、准确地分类和描述商品。
4、为新商品或新版本创建新的详情页面。
5、仅创建与主要商品相关的有效“变体”。
在编写商品信息时,亚马逊方面表示商品详情页面的商品名称、描述、要点或图片中不允许出现以下任何内容:
电话号码、地址、电子邮件地址或网站URL;
供货情况、商品价格或状况详情;
评论、引用或推荐内容;
请求买家发布正面评价的言辞;
用于下订单的其他网站链接或备选配送服务(如免费配送);
在图片、照片或视频上加印广告、宣传资料或水印;
时效性信息,如宣传活动、研讨会或讲座的日期;
在属性中全部使用大写字母,这适用于商品名称、要点和/或商品描述,据了解,亚马逊允许卖家仅对每个单词的开头使用大写字母。
此外,卖家还需注意的是,商品名称不得超过200个字符(包括空格,此上限适用于所有分类,某些分类的字符数可能更少。
一句话总结就是,在亚马逊上销售的任何商品均应遵守亚马逊商品信息标准,如果卖家未遵守这些标准,则会导致负面买家体验,并可能会导致卖家的销售权限被暂时或永久取消。
*请认真填写需求信息,我们会在24小时内与您取得联系。