私はjsで翻訳するためにphpにこのコードを持っています(正確にはノード)
$config['test'] = array(
"something" => "http://something.com/web/stats_data2.php"
,"somethingelse" =>"http://somethingelse.com/web/stats_data2.php"
,"anothersomething" =>"http://anothersomething.com/web/stats_data2.php"
);
だから私はこれを書き始めました:
config.test = [
something = 'http://something.com/web/stats_data2.php'
, somethingelse = 'http://somethingelse.com/web/stats_data2.php'
, anothersomething = 'http://anothersomething.com/web/stats_data2.php']
しかし、代わりに次のように書くべきではないかどうかはわかりません。
config.test.something = 'http://something.com/web/stats_data2.php';
config.test.something = 'http://somethingelse.com/web/stats_data2.php';
config.test.anothersomething = 'http://anothersomething.com/web/stats_data2.php';
目標は、console.log(config.test.['something']); を実行する場合、出力にリンクを含めることです。
サーバーなしでテストする方法はありますか (明日までに何もないため)、または構文は適切ですか?