我目前正在移植一个Javascript" app"进入AngularJS,这个应用程序的一部分将太长,无法重新编码。
我想要做的是在这里提供的离子sideMenu示例中使用像alert(" message")这样的简单javascript指令:http://ionicframework.com/getting-started/
我已经尝试将其包含在indext.html以及search.html中,但没有任何帮助
<script src="js/test.js" type="text/javascript"></script>
这是我的test.js(我没有得到console.log的输出)
function test()
{
console.log('test');
alert("Secon test");
}
test(); //first method for calling the function, won't work
在一个属性中调用它不会起作用:
<ion-content class="has-header" scroll="false" onload="test()">
你能告诉我为什么这不起作用以及如何解决它? 提前谢谢
答案 0 :(得分:0)
如前所述Lucuma: Ionic使用角度,因此应该包含在控制器中。