我目前在使用Google Chrome浏览器时遇到一个非常烦人的问题。我有一些过滤器是多选的,当我单击以在这些过滤器上键入时,chrome会建议该选择的占位符作为自动填充选项。我从未在此字段上键入过该文本,Chrome会从输入的占位符中获取该文本。

另外,似乎Google将该占位符保存为“建议”以填写表单上的数据。

我已经尝试将这些字段设置为autocomplete="off"和autocomplete="new-password,但是它没有用。
如果我禁用Chrome选项自动填充地址,电话号码等,此问题将消失。
我希望能够抑制chrome提出的建议,因为它没有任何意义,并且会使使用过滤器感到痛苦。我不确定这是否是Chrome错误,select2错误以及两者的结合。我一直在互联网上到处寻找一种解决方案,却找不到解决方案,有人知道如何解决吗?
我正在尝试获取属于特定事件的所有 eventMessage。但是我不能。
我正在查询me/messages与$expand=microsoft.graph.eventMessage/event并尝试过滤此关系:
https://graph.microsoft.com/v1.0/me/messages?$expand=microsoft.graph.eventMessage/event&filter=event/id eq 'eventID'
但是,我收到以下错误
{
"error": {
"code": "RequestBroker--ParseUri",
"message": "Could not find a property named 'event' on type 'Microsoft.OutlookServices.Message'.",
"innerError": {
"request-id": "cb211061-802b-4657-a191-f06c449897d1",
"date": "2019-05-16T14:01:43"
}
}
}
Run Code Online (Sandbox Code Playgroud)
但是看看他们用事件扩展消息的例子,API 的返回有一个事件属性(见下面返回的 JSON)。
HTTP/1.1 200 OK
Content-type: application/json
{
"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users('8fd6e83b-3cc0-4bf0-8b26-950f4d7110f6')/messages/$entity",
"@odata.type":"#microsoft.graph.eventMessage",
"@odata.etag":"W/\"CwAAABYAAABXlB/SL0N4Q6g6o+jSYAEuAAAImkVF\"",
"id":"AAMkADYAAAImV_jAAA=",
"createdDateTime":"2017-12-27T21:54:55Z",
"lastModifiedDateTime":"2017-12-27T23:26:38Z",
"changeKey":"CwAAABYAAABXlB/SL0N4Q6g6o+jSYAEuAAAImkVF",
"categories":[
],
"receivedDateTime":"2017-12-27T21:54:55Z",
"sentDateTime":"2017-12-27T21:54:54Z",
"hasAttachments":false,
"internetMessageId":"<MWHPR1301MB211042CF@MWHPR1301MB2110.namprd13.prod.outlook.com>",
"subject":"Kick off planning",
"bodyPreview":"Let's collect opinions from our teams and organize action items.",
"importance":"normal",
"parentFolderId":"AQMkADYAS4AAAIBDAAAAA==",
"conversationId":"AAQkADYRuffB3wDlPn-ReFZarI60=",
"isDeliveryReceiptRequested":null,
"isReadReceiptRequested":false, …Run Code Online (Sandbox Code Playgroud)