博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angularjs指令中的scope引用父作用域的函数,如何传递参数
阅读量:6408 次
发布时间:2019-06-23

本文共 536 字,大约阅读时间需要 1 分钟。

hot3.png

html

<div ng-controller="paginationDemoCtrl" class="text-center">

<pagination class="pagination-sm" total-items="totalItems" page="currentPage" on-select-page="pageChanged(chenyiqi)" previous-text="&lsaquo;" next-text="&rsaquo;" num-pages="numPages" ></pagination><pre>共{

{ numPages }}页,{
{ totalItems }}条</pre>

</div>

指令

    scope: {

      page: '=',

      totalItems: '=',

      onSelectPage:' &'

    },

指令中的onSelectPage指定引用标签中指明的父作用域中的函数,传递参数为chenyiqi;

$scope.onSelectPage({ chenyiqi: page });

在此处将给参数chenyiqi赋值

转载于:https://my.oschina.net/u/259316/blog/268553

你可能感兴趣的文章
一起谈.NET技术,.Net Framework源代码中的模式之Prototype(原型模式)
查看>>
[shell 命令] find 查找文件
查看>>
windows下启动mysql服务的命令行启动和手动启动方法
查看>>
VTK三维点集轮廓凸包提取
查看>>
【概率论与数理统计】小结9-3 - 区间估计
查看>>
Golang性能调优入门
查看>>
sqlloader外部表
查看>>
golang笔记——数组与切片
查看>>
屏蔽可忽略的js脚本错误
查看>>
散文分享
查看>>
【Vue】vue.js常用指令
查看>>
NFS学习
查看>>
MySql常用命令总结
查看>>
又一年...
查看>>
文件上传框的美化+预览+ajax
查看>>
Linux VFS
查看>>
ext不能选中复制属性_如何实现Extjs的grid单元格只让选择(即可以复制单元格内容)但是不让修改?...
查看>>
python中print的作用*8、不能+8_在 Python 3.x 中语句 print(*[1,2,3]) 不能正确执行。 (1.0分)_学小易找答案...
查看>>
python 生成html代码_使用Python Markdown 生成 html
查看>>
axure如何导出原件_Axure 教程:轻松导出图标字体所有图标
查看>>