回答編集履歴
2
誤字を修正
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
そういう疑問を持ったら、まずは**
|
1
|
+
そういう疑問を持ったら、まずは**FullCalendarの公式ドキュメントを読みましょう**。
|
2
2
|
今回だと、`getEventById`のページをGoogle検索などで探し、そこに書いてあるリンクから、返り値の`Event Object`のページに進みます。
|
3
3
|
|
4
4
|
[Event Object - Docs | FullCalendar](https://fullcalendar.io/docs/event-object)
|
@@ -11,4 +11,4 @@
|
|
11
11
|
リストの後:
|
12
12
|
> All properties are read-only. If you want to modify them, use the various methods of the Event object, such as setProp, setExtendedProp, setDates, etc.
|
13
13
|
|
14
|
-
すべてのプロパティ(titleを含む)は読み取り専用であることがわかります。プロパティを変更するには、メソッド(`setProp`など)を使わなければいけないことも。
|
14
|
+
すべてのプロパティ(titleを含む)は**読み取り専用**であることがわかります。プロパティを変更するには、メソッド(`setProp`など)を使わなければいけないことも。
|
1
表現を修正
answer
CHANGED
@@ -5,8 +5,10 @@
|
|
5
5
|
|
6
6
|
すると、プロパティのリストの前と後に、それぞれ以下のように書いてあります。
|
7
7
|
|
8
|
+
リストの前:
|
8
9
|
> An event object has a number of properties and methods. All properties are read-only and you must use the methods to modify the properties.
|
9
10
|
|
11
|
+
リストの後:
|
10
12
|
> All properties are read-only. If you want to modify them, use the various methods of the Event object, such as setProp, setExtendedProp, setDates, etc.
|
11
13
|
|
12
14
|
すべてのプロパティ(titleを含む)は読み取り専用であることがわかります。プロパティを変更するには、メソッド(`setProp`など)を使わなければいけないことも。
|