--- title: Der Lustige Geschichten Generator slug: Learn/JavaScript/First_steps/Silly_story_generator translation_of: Learn/JavaScript/First_steps/Silly_story_generator original_slug: Learn/JavaScript/First_steps/lustige_geschichten_generator ---
In dieser Prüfung ist es deine Aufgabe das von dir in den vorherigen Artikeln gesammelten Wissen anzuwenden, indem due eine lustige Applikation schreibst, mit der man lustige Geschichten erzeugen kann. Viel Spass mit dem Lustige Geschichten Generator !
Vorraussetzungen: | Bevor du dich an dieser Aufgabe versuchst, solltest du alle anderen Artikel dieses Moduls gelesen und bearbeitet haben. |
---|---|
Ziel: | Verständnis von fundamentalen JavaScript Kenntnissen, wie Variablen, Operatoren und einfachen Datentypen (Zahlen, Zeichenketten, Arrays) |
Um mit deiner Aufgabe zu beginnen, solltest du::
index.html
. Die Datei enthält auch einige CSS-Anweisungen für das Styling.Notiz: Alternativ kannst du auch eine Seite wie JSBin oder Glitch benutzen, um die Aufgabe zu bearbeiten. Kopiere dazu einfach den Quelltext von HTML, CSS und JavaScript in einen dieser Online-Editoren. Wenn einer dieser Editoren kein extra JavaScript Panel haben sollte, kopiere das JavaScript einfach zwischen <script>-Tags
in deinem HTML-Code.
Für diese Aufgabe geben wir dir einige HTML/CSS Codestücke, einige Textbausteine und ein paar JavaScript Funktionen in die Hand; du musst die fehlenden JavaScript-Teile ergänzen, um alles zu einem lauffähigen Programm zu kombinieren, was Folgendes tun kann:
Der folgende Screenshot zeigt dir ein Beispiel, wie die Ausgabe deines geschriebenen Programmes aussehen wird:
Um dich noch mehr mit deiner Arbeit vertraut zu machen, schau dir die fertige Lösung an (ohne im Quellcode zu spicken! )
In den folgenden Abschnitten wird dir erklärt, was du tun musst.
Grundaufbau:
main.js
, und zwar im selben Verzeichnis, wie deine index.html
Datei.main.js
mit deiner HTML Datei, indem du es mithilfe des Script-tags {{htmlelement("script")}} in deinem HTML aufrufst. Füge die Zeile kurz vor dem schließenden </body>
tag ein.Vorgegebene Variablen und Functions:
main.js
Datei. Im Code wirst du 3 Variablen entdecken, die sich auf verschiedene Teile der Ausgabe beziehen: (customName
) bezieht sich auf das "Enter custom name" Text Feld , the "Generate random story" button (randomize
), and the {{htmlelement("p")}} element at the bottom of the HTML body that the story will be copied into (story
), respectively. In addition you've got a function called randomValueFromArray()
that takes an array, and returns one of the items stored inside the array at random.main.js
:
storyText
.insertX
.insertY
.insertZ
.Placing the event handler and incomplete function:
main.js
file. This:
randomize
variable so that when the button it represents is clicked, the result()
function is run.result()
function definiton to your code. For the remainder of the assessment, you'll be filling in lines inside this function to complete it and make it work properly.Completing the result()
function:
newStory
, and set it's value to equal storyText
. This is needed so we can create a new random story each time the button is pressed and the function is run. If we made changes directly to storyText
, we'd only be able to generate a new story once.xItem
, yItem
, and zItem
, and make them equal to the result of calling randomValueFromArray()
on your three arrays (the result in each case will be a random item out of each array it is called on). For example you can call the function and get it to return one random string out of insertX
by writing randomValueFromArray(insertX)
.newStory
string — :insertx:
, :inserty:
, and :insertz:
— with the strings stored in xItem
, yItem
, and zItem
. There is a particular string method that will help you here — in each case, make the call to the method equal to newStory
, so each time it is called, newStory
is made equal to itself, but with substitutions made. So each time the button is pressed, these placeholders are each replaced with a random silly string. As a further hint, the method in question only replaces the first instance of the substring it finds, so you might need to make one of the calls twice.if
block, add another string replacement method call to replace the name 'Bob' found in the newStory
string with the name
variable. In this block we are saying "If a value has been entered into the customName
text input, replace Bob in the story with that custom name."if
block, we are checking to see if the uk
radio button has been selected. If so, we want to convert the weight and temperature values in the story from pounds and Fahrenheit into stones and centigrade. What you need to do is as follows:
weight
variable, replace 300 with a calculation that converts 300 pounds into stones. Concatenate ' stone'
onto the end of the result of the overall Math.round()
call.temperature
variable, replace 94 with a calculation that converts 94 Fahrenheit into centigrade. Concatenate ' centigrade'
onto the end of the result of the overall Math.round()
call.temperature
variable, and '300 pounds' with the contents of the weight
variable.textContent
property of the story
variable (which references the paragraph) equal to newStory
.document.querySelector('html').style.backgroundColor = 'red';
Math.round()
is a built-in JavaScript method that simply rounds the result of a calculation to the nearest whole number.replace()
method multiple times, or you can use regular expressions. For instance, let text = 'I am the biggest lover, I love my love'; text.replace(/love/g,'like');
will replace all instances of 'love' to 'like'. Remember, Strings are immutable!If you are following this assessment as part of an organized course, you should be able to give your work to your teacher/mentor for marking. If you are self-learning, then you can get the marking guide fairly easily by asking on the discussion thread for this exercise, or in the #mdn IRC channel on Mozilla IRC. Try the exercise first — there is nothing to be gained by cheating!
{{PreviousMenu("Learn/JavaScript/First_steps/Arrays", "Learn/JavaScript/First_steps")}}