javascript - 使用angular給圖片動態賦值src屬性出現unsafe的情況
PHP中文网
PHP中文网 2017-06-05 11:10:10
0
1
1075
  • 百度過後,在appmodule中設定了app.config的值$compileProvider.imgSrcSanitizationWhitelist(/^s*(https?|local|data):/);
    但是沒有效果

想問大家還有什麼其他辦法可以去掉這個unsafe

html程式碼: <p class="user_pic"><img src="{{item.UserID | imgSrc}}" width="100%;" height="178px;"></ p>
controller中:app.filter('imgSrc', function () {

    return function (input) {
        var src = '';
        if (input == undefined) {
            return;
        }
        $.ajax({
            url: BaseURL + "/MainUser/LoadUserPersonalHomepageByUseriD?userID=" + input,
            type: 'get',
            async: false,
            success: function (data) {
                if (data.UploadIMG == null) {
                    src = '/img/tp.png'
                } else {
                    src = data.UploadIMG
                }
            }
        })
        return src;
    }
});
PHP中文网
PHP中文网

认证0级讲师

全部回覆(1)
習慣沉默

https://stackoverflow.com/que...

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!