zoukankan      html  css  js  c++  java
  • 战五渣前端,面试第一天总结

    面试第一天,总结下碰到的不熟练的问题,备查:

    1. Ionic中,如何在切换tabs标签页面的时候,上一个页面填写的内容不消失(我之前的经验是,需要录入内容的页面,直接是全屏的,不允许tab切换,后咨询大神,推荐使用indexDB存储)
    2. 路由跳转,$sate.go() 和 $state.translateTo()的区别(摘自stackoverflow大意就是 前者底层调用的后者,推荐使用前者):

      $state.go(to [, toParams] [, options])

      Returns a Promise representing the state of the transition.

      Convenience method for transitioning to a new state. $state.go calls $state.transitionTo internally but automatically sets options to { location: true, inherit: true, relative: $state.$current, notify: true }. This allows you to easily use an absolute or relative to path and specify only the parameters you'd like to update (while letting unspecified parameters inherit from the current state).

      $state.transitionTo(to, toParams [, options])

      Returns a Promise representing the state of the transition.

      Low-level method for transitioning to a new state. $state.go() uses transitionTo internally. $state.go() is recommended in most situations.

    3. angular项目中脚本异步加载:异步加载使用script.js, angular-loader解决异步调用脚本的依赖关系问题, 在$script 的回调中 使用 angular.bootstrap(document, ['myApp']);
    4. angular项目中使用了哪些插件,其实侧重点不是使用了哪些,而是要强调angular不推荐DOM操作,不使用jQuery,也就是很多插件用不了
  • 相关阅读:
    [写代码]处理一组lrc歌词文件
    [ubuntu]windows重装以后,恢复grub引导
    [HDOJ1878]欧拉回路
    [写代码]解析自定义数据库文件的思路
    [写代码]wordList——百词斩CLI版
    [HDOJ2544]最短路
    [HDOJ1285] 确定比赛名次
    [HDOJ1232]畅通工程
    [HDOJ2717]Catch That Cow
    jQuery实现点击开关图片切换
  • 原文地址:https://www.cnblogs.com/NearTheSea/p/5339452.html
Copyright © 2011-2022 走看看