首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

关于revoke certificate和备份的这点事

事情是这样的,前几天电脑崩溃,硬盘数据全部丢失,重装系统和Xcode之后,从Develop Center的Certificates里重新下载证书,安装到新电脑上,在真机上运行时,提示报错:”A valid signing identity matching this profile could not be found in your keychain”, 按照字面意思查了一下,是因为本地KeyChain里丢失了private key的缘故,得到的结论是要么从之前的备份中恢复,或者重新生成新的证书。遗憾的是我之前并没有保存备份,无奈只好重新生成。一个问题马上出现在脑海,就是重新生成新的证书是否会对线上的App产生影响。查了一下官方的文档,发现有这部分详细的说明,消除了我的顾虑,内容如下(参考2):

05

javascript当中replaceChild的用法

例 1.6(replaceChildIEFF.html)  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <head>     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> </HEAD> <BODY>

<script> var contain = document.getElementById("contain"); var b =  document.getElementById("b"); var p =  document.createElement("p");/*这句话后创建了一个

*/ p.innerHTML="pText"; /* Node.replaceChild() (Method) A means of replacing child objects with new nodes and discarding the old ones. The new node must be created using the createElement method. Property/method value type: Node object JavaScript syntax: - myNode.replaceChild(newNode, oldNode) Argument list: newNode The node to be placed into the hierarchy oldNode The node to be replaced */ contain.replaceChild( p , b  ); </script> </BODY> </HTML>

03
领券