我打算在我的应用中使用“使用LinkedIn登录”功能。我在之前的项目中遵循了React flux app架构,其中我没有在index.html中定义任何函数。
我阅读了LinkedIn文档,它说JS SDK必须在HTML的head部分定义,如下所示。
<script type="text/javascript" src="//platform.linkedin.com/in.js">
api_key: xxxxxxxxxxxxxx
onLoad: onLinkedInLoad
authorize: true
</script>
我过去只在HTML doc中定义以下内容。
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<div class="container"></div>
<script type="text/javascript" src="./js/app.js"></script>
</body>
</html>
有没有办法在其他js文件中导入LinkedIn JS SDK。如果它必须位于index.html的头部,是否有办法从另一个文件中调用'onLinkedInLoad'函数?
谢谢!