LoginSignup
4
4

More than 5 years have passed since last update.

Alloy.createController でコントローラー指定する際のパスに注意

Last updated at Posted at 2013-04-11

Android対策じゃぁぁぁ!って言って、Alloy.createControllerで指定するコントローラーを絶対パスで指定すると、iOSの実機で死ぬ。AndroidとiOSのシミュレータは大丈夫。

これは死ぬ

var ctrl = Alloy.createController('/rider/detail/rider_detail_info_button', {});

これで幸せ

var ctrl = Alloy.createController('rider/detail/rider_detail_info_button', {});
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4