我正在开发一个Ionic应用程序,用户可以在其中发布降价内容。为了完成这项工作,我正在使用angular-marked库。在应用程序中,我希望所有降价链接都可以在操作系统的默认浏览器中打开,所以我做了两件事。
我写了一个角度指令,强制在操作系统中打开链接。浏览器使用ngCordova包装器为cordova-plugin-inappbrowser。
我已设置角度标记的配置,以使用此指令呈现所有链接。
问题是链接无法在系统浏览器中打开。它们在当前的WebView中打开。可能是我的指示很糟糕,或者指令在这种情况下甚至不是正确的用法。
我在代码中做了什么?如何解决我在系统浏览器中打开链接的问题?
.directive('fab-extLink', ['$cordovaInAppBrowser', function($cordovaInAppBrowser){
return {
restrict: 'A',
link: function(scope, elem, attrs) {
elem.bind('click', function(e) {
// Stop the link from opening.
e.preventDefault();
// Open the link with the operating system browser.
$cordovaInAppBrowser.open(attrs.href, '_system');
});
}
};
}])
.config( [
'$compileProvider',
'markedProvider',
function( $compileProvider, markedProvider)
{
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension):/);
// When markdown is rendered use the external link directive.
markedProvider.setRenderer({
link: function(href, title, text) {
return '<a fab-extLink href="' + href + '"' + (title ? ' title="' + title + '"' : '') + '>' + text + '</a>';
}
});
}
])
答案 0 :(得分:3)
您的代码存在两个问题
camelCase
中,它将在HTML中转换为kebab-case
。这很容易解决,只需更改 .directive('fab-extLink', ['$cordovaInAppBrowser', function($cordovaInAppBrowser){
到
.directive('fabExtlink', ['$cordovaInAppBrowser', function($cordovaInAppBrowser){
<a fab-extlink>
,但angular不会$compile
(实例化)它。这是一个很难的(如果你不想用角度标记的猴子补丁)。
angular-marked
使用element.html(marked(text, scope.opts || null));
来设置元素的内部HTML,它会跳过angular的编译过程,因此指令不会被初始化。
一种解决方法是使用全局函数(我不知道):
在app.run中定义:
.run(function ($cordovaInAppBrowser) {
window.openInSystemBrowser=function(link){
$cordovaInAppBrowser.open(link, '_system');
};
并配置角度标记以使用onclick,以便它独立于角度工作。
markedProvider.setRenderer({
link: function (href, title, text) {
return '<a onclick="openInSystemBrowser(\'' + href + '\')"' + (title ? ' title="' + title + '"' : '') + '>' + text + '</a>';
}
});
我能想到的另一种方法是分叉和修补角度标记。
angular-marked.js
替换
element.html(marked(text, scope.opts || null));
与
element.replaceWith($compile(marked(text, scope.opts || null))(scope));
我检查了回购,最新版本的角度标记(v1.2)支持一个名为compile
的属性,就是这样做。
e.g。
<marked compile="true">
# Markdown [Google](http://www.google.com)
*It works!*
</marked>
所以,最后......
.directive('fab-extLink', ...
到
.directive('fabExtlink', ...
compile='true'
添加到<marked>
指令答案 1 :(得分:1)
如果您正在寻找一种在带有标记的移动设备上在原生浏览器中打开链接的简便方法,您只需尝试在角度.config中设置此内容:
public class UsersArrayList {
public ArrayList<User> usersList;
private UsersArrayList() {
usersList = new ArrayList<User>();
}
public ArrayList<User> getUsersList() {
return usersList;
}
private static UsersArrayList instance;
public static UsersArrayList getInstance() {
if (instance == null) instance = new UsersArrayList();
return instance;
}
}
然后你需要在这样的地方绑定一个markedProvider.setRenderer({
link: function(href, title, text) {
return "<a href='" + href + "'" + (title ? " title='" + title + "'" : '') + " onclick='window.open("+href+", '_system')'" + " target='_system'>" + text + "</a>";
}
});
函数:
onDeviceReady