">{{row.fullna-6ren">
gpt4 book ai didi

php - 如何在 codeigniter 中加密 Angularjs 值?

转载 作者:搜寻专家 更新时间:2023-10-31 21:51:06 24 4
gpt4 key购买 nike

是否可以使用 codeigniter 加密库来加密 angularjs 值?这是我的代码

<tr ng-repeat="row in data">
<td><a href="<?php echo site_url('users/details/'.$this->encrypt->encode("{{row.userid}}")); ?>">{{row.fullname}}</a></td>
</tr>

现在,我想加密userid。这怎么可能?

在我的 Users.php 中

public function details($id) {
echo $this->encrypt->decode($id) // the result is {{row.id}}
}

我想获得 {{row.id}} 的实际值,即 10

我该怎么做?有什么帮助吗?谢谢:)

最佳答案

您可以在 javascript 中设置 cookie:

document.cookie='userId='+userId;

并进入codeigniter:

get_cookie(''); //or use $_COOKIE["userId"]

那么这个值就在你手中加密了

关于php - 如何在 codeigniter 中加密 Angularjs 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41998675/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com