我有一张图片,其网址为cimport cython
@cython.wraparound(False)
@cython.cdivision(True)
@cython.boundscheck(False)
def sorting(int[:] A, int[:] B):
cdef Py_ssize_t i = 0
cdef Py_ssize_t j = 0
cdef int lenA = A.shape[0]
cdef int lenB = B.shape[0]
intersect = []
while (i < lenA and j < lenB):
if A[i] == B[j]:
intersect.append(A[i])
i += 1
j += 1
elif A[i] > B[j]:
j += 1
elif A[i] < B[j]:
i += 1
return intersect
,但是../path/to/image
不起作用。我网页的网址是../
。我似乎无法在线找到解决方案。
我相信目录是相对于网页网址的。我已经尝试从http://localhost:8080/account.html
开始使用,但是我不想使用它,因为我的其他客户端将使用域名,在本例中为localhost。
有没有一种方法可以解决此问题而无需移动文件夹?
答案 0 :(得分:0)
尝试一下/path/to/image.jpg
删除点,然后在路径的开头添加-> /,这意味着该路径将进入根目录