1

我想自动设置我的日常日记,通常标题为“每日日记@today”

我的帖子请求的正文如下所示:

body: {
        parent: { database_id: databaseId },
        properties: {
          title: {
            title:[
              {
                "text": {
                  "content": "Daily ..." // how do I add an at mention here, @today
                }
              }
            ]
          },
          date: new Date().toISOString()
        }
      },

我如何在标题中提及?

4

2 回答 2

1

我想我可以做到这一点

title:[
          {
            "text": {
              "content": "Mind Cap "
            }
          },
          {
            "mention": {
              type: "date",
              date: {
                "start": new Date().toISOString().substr(0,10)
              }
            }
          }
        ]

但这仍然不是很好的“@Today”提及

于 2021-06-19T18:56:53.710 回答
1

您可以将其添加为标题,也可以将其作为富文本提供。下面是一个例子。同样,您可以将其添加到日期属性字段。我在富文本下方添加了一个示例。

{
   "parent":{
      "database_id":"{{database}}"
   },
   "properties":{
      "Name":{
         "title":[
            {
               "text":{
                  "content":"A Test Page"
               }
            },
            {
               "type":"mention",
                "mention": {
                    "type": "date",
                        "date": {
                        "start": "2021-07-28T11:00:00.000-04:00"
                        }
                }
            }
         ]
      },
      "sample_text":{
         "rich_text":[
            {
               "type":"mention",
                "mention": {
                    "type": "date",
                        "date": {
                        "start": "2021-07-11T11:00:00.000-04:00"
                        }
                }
            },
            {
               "type":"text",
               "text":{
                  "content":"Some more text with "
               }
            },
            {
               "type":"text",
               "text":{
                  "content":"some"
               },
               "annotations":{
                  "italic":true,
                  "bold": false,
                  "underline": false,
                  "strikethrough": true,
                  "color": "blue"
               }
            },
            {
               "type":"text",
               "text":{
                  "content":" "
               }
            },
            {
               "type":"text",
               "text":{
                  "content":"fun"
               },
               "annotations":{
                  "bold":true,
                  "underline": false,
                  "strikethrough": false
               }
            },
            {
               "type":"text",
               "text":{
                  "content":" "
               }
            },
            {
               "type":"text",
               "text":{
                  "content":"formatting"
               },
               "annotations":{
                  "color":"pink"
               }
            }
         ]
      },
      "Time": {
            "date": { "start": "2021-08-08T01:00:00.000-05:00" }
        }
    }
}
于 2021-07-28T07:44:25.680 回答