street()
更新日: 2018-09-04
street()
// 使い方
chance.street()
chance.street({country:it})
通り名をランダムに生成して返します。
chance.street();
=> 'Tesca Circle'
short_suffix
を指定すると、通りの略称(Ave、St等)を付与します。
chance.street({short_suffix: true});
=> 'Jiled St'
syllables
を指定すると、通り名に含まれる音節数を指定することができます。
chance.street({syllables: 8});
=> 'Teniefitinusewjircor Junction'
country
を指定すると、通り名の略称(Ave、St等)を取得する国を指定することができます。
chance.street({country: 'it'});
=> 'Via Nefba'
現在、指定可能な国はus
(アメリカ)、it
(イタリア)です。
デモ
ボタンを押すと、通り名をランダムに表示します。
結果:
JavaScript
var button = document.getElementById('get-result');
button.addEventListener('click', function() {
var chance = new Chance();
document.getElementById('result').innerHTML = chance.street({short_suffix: true});
}, false);
HTML
<button id="get-result">結果表示</button>
<div>
<span>結果:</span>
<span id="result"></span>
</div>
© 2015 Victor Quinn Released under the MIT license
このコンテンツはVictor Quinn(victorquinn)によるChanceドキュメントを翻訳/改変したものです。